Compare commits
29 Commits
niklas/imp
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1c5c99621 | ||
|
|
2e17412b4a | ||
|
|
afbcd81310 | ||
|
|
fd87257f37 | ||
|
|
876115cf6e | ||
|
|
f0e7c1338b | ||
|
|
8642a057f0 | ||
|
|
ce14d59d51 | ||
|
|
4727364048 | ||
|
|
666eb211a3 | ||
|
|
ba6ff9f6c3 | ||
|
|
9ccb1e042b | ||
|
|
a5bcfca39a | ||
|
|
a1f9e29134 | ||
|
|
98302b9af5 | ||
|
|
f3de1f9280 | ||
|
|
ecd0180483 | ||
|
|
1784b7c283 | ||
|
|
b066658eb0 | ||
|
|
0bcf8a2d8c | ||
|
|
397935f51a | ||
|
|
8eda3bc954 | ||
|
|
b9cba11be7 | ||
|
|
5319a299be | ||
|
|
2186c4d7db | ||
|
|
7df61fd6c1 | ||
|
|
0734f7a810 | ||
|
|
65a75e061b | ||
|
|
974ec43f10 |
38
README
38
README
@@ -11,10 +11,42 @@ Was needs to be done on the Raspberry pi before the tool can run.
|
||||
- pip install -r requirements.txt
|
||||
|
||||
|
||||
How to run the script:
|
||||
3) How to run the script for testing:
|
||||
|
||||
- nohup python main.py > terminal_log 2>&1 &
|
||||
nohup python main.py > terminal_log 2>&1 &
|
||||
|
||||
For reading out the terminal_log while script is runing:
|
||||
|
||||
- tail -f terminal_log
|
||||
tail -f terminal_log
|
||||
|
||||
|
||||
4) Implement and run the ems as systemd service:
|
||||
create:
|
||||
/etc/systemd/system/allmende_ems.service
|
||||
|
||||
insert:
|
||||
[Unit]
|
||||
Description=Allmende EMS Python Script
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
WorkingDirectory=/home/pi/projects/allmende_ems
|
||||
ExecStart=/home/pi/allmende_ems/bin/python3.11 /home/pi/projects/allmende_ems/main.py
|
||||
Restart=always
|
||||
RestartSec=5
|
||||
StandardOutput=journal
|
||||
StandardError=journal
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
manage the service with the following commands:
|
||||
Once:
|
||||
sudo systemctl daemon-reload
|
||||
sudo systemctl start allmende_ems.service
|
||||
sudo systemctl enable allmende_ems.service
|
||||
While running:
|
||||
sudo systemctl status allmende_ems.service
|
||||
sudo systemctl restart allmende_ems.service
|
||||
sudo systemctl stop allmende_ems.service
|
||||
journalctl -u allmende_ems.service
|
||||
|
||||
BIN
__pycache__/data_base_csv.cpython-312.pyc
Normal file
BIN
__pycache__/data_base_csv.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/data_base_influx.cpython-311.pyc
Normal file
BIN
__pycache__/data_base_influx.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/data_base_influx.cpython-312.pyc
Normal file
BIN
__pycache__/data_base_influx.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/energysystem.cpython-312.pyc
Normal file
BIN
__pycache__/energysystem.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/heat_pump.cpython-312.pyc
Normal file
BIN
__pycache__/heat_pump.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/make_tunnel.cpython-312.pyc
Normal file
BIN
__pycache__/make_tunnel.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/pv_inverter.cpython-312.pyc
Normal file
BIN
__pycache__/pv_inverter.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/sg_ready_controller.cpython-312.pyc
Normal file
BIN
__pycache__/sg_ready_controller.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/shelly_pro_3m.cpython-312.pyc
Normal file
BIN
__pycache__/shelly_pro_3m.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/solaredge_meter.cpython-312.pyc
Normal file
BIN
__pycache__/solaredge_meter.cpython-312.pyc
Normal file
Binary file not shown.
@@ -0,0 +1,7 @@
|
||||
from heat_pump import HeatPump
|
||||
|
||||
hp_master = HeatPump(device_name='hp_master', ip_address='10.0.0.10', port=502, excel_path="../modbus_registers/heat_pump_registers.xlsx")
|
||||
|
||||
state = hp_master.get_state()
|
||||
|
||||
print(state)
|
||||
49
component_test_connectors/heat_pump_connection_sg_ready.py
Normal file
49
component_test_connectors/heat_pump_connection_sg_ready.py
Normal file
@@ -0,0 +1,49 @@
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
|
||||
def switch_sg_ready_mode(ip, port, mode):
|
||||
"""
|
||||
Register 300: 1=BUS 0= Hardware Kontakte
|
||||
Register 301 & 302:
|
||||
0-0= Kein Offset
|
||||
0-1 Boiler und Heizung Offset
|
||||
1-1 Boiler Offset + E-Einsatz Sollwert Erhöht
|
||||
1-0 SG EVU Sperre
|
||||
:param ip:
|
||||
:param mode:
|
||||
'mode1' = [True, False, False] => SG Ready deactivated
|
||||
'mode2' = [True, False, True] => SG ready activated for heatpump only
|
||||
'mode3' = [True, True, True] => SG ready activated for heatpump and heat rod
|
||||
:return:
|
||||
"""
|
||||
client = ModbusTcpClient(ip, port=port)
|
||||
if not client.connect():
|
||||
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
|
||||
return
|
||||
|
||||
mode_code = None
|
||||
if mode == 'mode1':
|
||||
mode_code = [True, False, False]
|
||||
elif mode == 'mode2':
|
||||
mode_code = [True, False, True]
|
||||
elif mode == 'mode3':
|
||||
mode_code = [True, True, True]
|
||||
else:
|
||||
print('Uncorrect or no string for mode!')
|
||||
|
||||
try:
|
||||
response_300 = client.write_coil(300, mode_code[0])
|
||||
response_301 = client.write_coil(301, mode_code[1])
|
||||
response_302 = client.write_coil(302, mode_code[2])
|
||||
|
||||
# Optional: Rückmeldungen prüfen
|
||||
for addr, resp in zip([300, 301, 302], [response_300, response_301, response_302]):
|
||||
if resp.isError():
|
||||
print(f"Fehler beim Schreiben von Coil {addr}: {resp}")
|
||||
else:
|
||||
print(f"Coil {addr} erfolgreich geschrieben.")
|
||||
|
||||
finally:
|
||||
client.close()
|
||||
|
||||
if '__name__' == '__main__':
|
||||
switch_sg_ready_mode(ip='10.0.0.10', port=502, mode='mode2')
|
||||
@@ -1,46 +0,0 @@
|
||||
import csv
|
||||
import os
|
||||
import tempfile
|
||||
import shutil
|
||||
|
||||
class DataBaseCsv:
|
||||
def __init__(self, filename: str):
|
||||
self.filename = filename
|
||||
|
||||
def store_data(self, data: dict):
|
||||
new_fields = list(data.keys())
|
||||
|
||||
# If file does not exist or is empty → create new file with header
|
||||
if not os.path.exists(self.filename) or os.path.getsize(self.filename) == 0:
|
||||
with open(self.filename, mode='w', newline='') as csv_file:
|
||||
writer = csv.DictWriter(csv_file, fieldnames=new_fields)
|
||||
writer.writeheader()
|
||||
writer.writerow(data)
|
||||
return
|
||||
|
||||
# If file exists → read existing header and data
|
||||
with open(self.filename, mode='r', newline='') as csv_file:
|
||||
reader = csv.DictReader(csv_file)
|
||||
existing_fields = reader.fieldnames
|
||||
existing_data = list(reader)
|
||||
|
||||
# Merge old and new fields (keep original order, add new ones)
|
||||
all_fields = existing_fields.copy()
|
||||
for field in new_fields:
|
||||
if field not in all_fields:
|
||||
all_fields.append(field)
|
||||
|
||||
# Write to a temporary file with updated header
|
||||
with tempfile.NamedTemporaryFile(mode='w', delete=False, newline='', encoding='utf-8') as tmp_file:
|
||||
writer = csv.DictWriter(tmp_file, fieldnames=all_fields)
|
||||
writer.writeheader()
|
||||
|
||||
# Write old rows with updated field list
|
||||
for row in existing_data:
|
||||
writer.writerow({field: row.get(field, '') for field in all_fields})
|
||||
|
||||
# Write new data row
|
||||
writer.writerow({field: data.get(field, '') for field in all_fields})
|
||||
|
||||
# Replace original file with updated temporary file
|
||||
shutil.move(tmp_file.name, self.filename)
|
||||
48
data_base_influx.py
Normal file
48
data_base_influx.py
Normal file
@@ -0,0 +1,48 @@
|
||||
from influxdb_client import InfluxDBClient, Point, WritePrecision
|
||||
from datetime import datetime
|
||||
import datetime as dt
|
||||
import pandas as pd
|
||||
|
||||
class DataBaseInflux:
|
||||
def __init__(self, url: str, token: str, org: str, bucket: str):
|
||||
self.url = url
|
||||
self.token = token
|
||||
self.org = org
|
||||
self.bucket = bucket
|
||||
self.client = InfluxDBClient(url=self.url, token=self.token, org=self.org)
|
||||
self.write_api = self.client.write_api()
|
||||
|
||||
def store_data(self, device_name: str, data: dict):
|
||||
measurement = device_name # Fest auf "messungen" gesetzt
|
||||
|
||||
point = Point(measurement)
|
||||
|
||||
# Alle Key/Value-Paare als Fields speichern
|
||||
for key, value in data.items():
|
||||
point = point.field(key, value)
|
||||
|
||||
# Zeitstempel automatisch auf jetzt setzen
|
||||
point = point.time(datetime.utcnow(), WritePrecision.NS)
|
||||
|
||||
# Punkt in InfluxDB schreiben
|
||||
self.write_api.write(bucket=self.bucket, org=self.org, record=point)
|
||||
|
||||
def store_forecasts(self, forecast_name: str, data: pd.Series):
|
||||
|
||||
measurement = forecast_name
|
||||
run_tag = dt.datetime.now(dt.timezone.utc).replace(second=0, microsecond=0).isoformat(timespec="minutes")
|
||||
|
||||
pts = []
|
||||
|
||||
series = pd.to_numeric(data, errors="coerce").dropna()
|
||||
|
||||
for ts, val in series.items():
|
||||
pts.append(
|
||||
Point(measurement)
|
||||
.tag("run", run_tag)
|
||||
.field("value", float(val))
|
||||
.time(ts.to_pydatetime(), WritePrecision.S)
|
||||
)
|
||||
|
||||
self.write_api.write(bucket=self.bucket, org=self.org, record=pts)
|
||||
|
||||
213
data_base_operations/transform_old_db_to_new.py
Normal file
213
data_base_operations/transform_old_db_to_new.py
Normal file
@@ -0,0 +1,213 @@
|
||||
import os, re, math, time
|
||||
from datetime import datetime, timezone, timedelta
|
||||
|
||||
import pandas as pd
|
||||
from influxdb_client import InfluxDBClient, Point, WritePrecision
|
||||
from influxdb_client.client.write_api import SYNCHRONOUS
|
||||
from influxdb_client.rest import ApiException
|
||||
|
||||
|
||||
# -----------------------
|
||||
# CONFIG
|
||||
# -----------------------
|
||||
INFLUX_URL = "http://192.168.1.146:8086"
|
||||
INFLUX_ORG = "allmende"
|
||||
INFLUX_TOKEN = os.environ.get("INFLUX_TOKEN", "Cw_naEZyvJ3isiAh1P4Eq3TsjcHmzzDFS7SlbKDsS6ZWL04fMEYixWqtNxGThDdG27S9aW5g7FP9eiq5z1rsGA==")
|
||||
|
||||
SOURCE_BUCKET = "allmende_db"
|
||||
TARGET_BUCKET = "allmende_db_v2"
|
||||
|
||||
MEASUREMENTS = [
|
||||
"hp_master", "hp_slave", "pv_forecast", "sg_ready",
|
||||
"solaredge_master", "solaredge_meter", "solaredge_slave", "wohnung_2_6"
|
||||
]
|
||||
|
||||
START_DT = datetime(2025, 6, 1, tzinfo=timezone.utc)
|
||||
STOP_DT = datetime.now(timezone.utc)
|
||||
WINDOW = timedelta(days=1)
|
||||
|
||||
EXCEL_PATH = "../modbus_registers/heat_pump_registers.xlsx"
|
||||
EXCEL_SHEET = "Register_Map"
|
||||
|
||||
BATCH_SIZE = 1000
|
||||
MAX_RETRIES = 8
|
||||
|
||||
|
||||
# -----------------------
|
||||
# Helpers
|
||||
# -----------------------
|
||||
def normalize(s) -> str:
|
||||
s = "" if s is None else str(s).strip()
|
||||
return re.sub(r"\s+", " ", s)
|
||||
|
||||
def is_invalid_sentinel(v: float) -> bool:
|
||||
return v in (-999.9, -999.0, 30000.0, 32767.0, 65535.0)
|
||||
|
||||
def ensure_bucket(client: InfluxDBClient, name: str):
|
||||
bapi = client.buckets_api()
|
||||
if bapi.find_bucket_by_name(name):
|
||||
return
|
||||
bapi.create_bucket(bucket_name=name, org=INFLUX_ORG, retention_rules=None)
|
||||
|
||||
def build_field_type_map_from_excel(path: str) -> dict[str, str]:
|
||||
df = pd.read_excel(path, sheet_name=EXCEL_SHEET)
|
||||
df = df[df["Register_Type"].astype(str).str.upper() == "IR"].copy()
|
||||
df["Address"] = df["Address"].astype(int)
|
||||
df["Description"] = df["Description"].fillna("").astype(str)
|
||||
df["Tag_Name"] = df["Tag_Name"].fillna("").astype(str)
|
||||
df["Data_Type"] = df["Data_Type"].fillna("").astype(str)
|
||||
|
||||
m: dict[str, str] = {}
|
||||
for _, r in df.iterrows():
|
||||
addr = int(r["Address"])
|
||||
desc = normalize(r["Description"])
|
||||
tag = normalize(r["Tag_Name"])
|
||||
dtp = normalize(r["Data_Type"]).upper()
|
||||
if tag:
|
||||
m[tag] = dtp
|
||||
old_key = normalize(f"{addr} - {desc}".strip(" -"))
|
||||
if old_key:
|
||||
m[old_key] = dtp
|
||||
return m
|
||||
|
||||
def coerce_value_to_dtype(v, dtype: str):
|
||||
if v is None:
|
||||
return None
|
||||
dtp = (dtype or "").upper()
|
||||
|
||||
if isinstance(v, (int, float)):
|
||||
fv = float(v)
|
||||
if math.isnan(fv) or math.isinf(fv):
|
||||
return None
|
||||
|
||||
if dtp in ("BOOL", "BOOLEAN"):
|
||||
if isinstance(v, bool): return v
|
||||
if isinstance(v, (int, float)): return bool(int(v))
|
||||
return None
|
||||
|
||||
if dtp.startswith("INT") or dtp.startswith("UINT"):
|
||||
if isinstance(v, bool): return int(v)
|
||||
if isinstance(v, (int, float)): return int(float(v))
|
||||
return None
|
||||
|
||||
if dtp.startswith("FLOAT") or dtp in ("DOUBLE",):
|
||||
if isinstance(v, bool): return float(int(v))
|
||||
if isinstance(v, (int, float)): return float(v)
|
||||
return None
|
||||
|
||||
return None
|
||||
|
||||
def write_with_retry(write_api, batch):
|
||||
delay = 1.0
|
||||
last_msg = ""
|
||||
for _ in range(MAX_RETRIES):
|
||||
try:
|
||||
write_api.write(bucket=TARGET_BUCKET, org=INFLUX_ORG, record=batch)
|
||||
return
|
||||
except ApiException as e:
|
||||
last_msg = getattr(e, "body", "") or str(e)
|
||||
status = getattr(e, "status", None)
|
||||
if "timeout" in last_msg.lower() or status in (429, 500, 502, 503, 504):
|
||||
time.sleep(delay)
|
||||
delay = min(delay * 2, 30)
|
||||
continue
|
||||
raise
|
||||
raise RuntimeError(f"Write failed after {MAX_RETRIES} retries: {last_msg}")
|
||||
|
||||
def window_already_migrated(query_api, measurement: str, start: datetime, stop: datetime) -> bool:
|
||||
# Prüft: gibt es im Zielbucket im Fenster mindestens 1 Punkt?
|
||||
flux = f'''
|
||||
from(bucket: "{TARGET_BUCKET}")
|
||||
|> range(start: time(v: "{start.isoformat()}"), stop: time(v: "{stop.isoformat()}"))
|
||||
|> filter(fn: (r) => r._measurement == "{measurement}")
|
||||
|> limit(n: 1)
|
||||
'''
|
||||
tables = query_api.query(flux, org=INFLUX_ORG)
|
||||
for t in tables:
|
||||
if t.records:
|
||||
return True
|
||||
return False
|
||||
|
||||
def migrate_window(query_api, write_api, measurement: str,
|
||||
start: datetime, stop: datetime,
|
||||
type_map: dict[str, str],
|
||||
do_type_cast: bool) -> int:
|
||||
flux = f'''
|
||||
from(bucket: "{SOURCE_BUCKET}")
|
||||
|> range(start: time(v: "{start.isoformat()}"), stop: time(v: "{stop.isoformat()}"))
|
||||
|> filter(fn: (r) => r._measurement == "{measurement}")
|
||||
|> keep(columns: ["_time","_measurement","_field","_value"])
|
||||
'''
|
||||
tables = query_api.query(flux, org=INFLUX_ORG)
|
||||
|
||||
batch, written = [], 0
|
||||
for table in tables:
|
||||
for rec in table.records:
|
||||
t = rec.get_time()
|
||||
field = normalize(rec.get_field())
|
||||
value = rec.get_value()
|
||||
if value is None:
|
||||
continue
|
||||
|
||||
if do_type_cast:
|
||||
dtp = type_map.get(field)
|
||||
if dtp:
|
||||
cv = coerce_value_to_dtype(value, dtp)
|
||||
if cv is None:
|
||||
continue
|
||||
if isinstance(cv, (int, float)) and is_invalid_sentinel(float(cv)):
|
||||
continue
|
||||
value = cv
|
||||
# kein Mapping -> unverändert schreiben
|
||||
|
||||
batch.append(Point(measurement).field(field, value).time(t, WritePrecision.NS))
|
||||
|
||||
if len(batch) >= BATCH_SIZE:
|
||||
write_with_retry(write_api, batch)
|
||||
written += len(batch)
|
||||
batch = []
|
||||
|
||||
if batch:
|
||||
write_with_retry(write_api, batch)
|
||||
written += len(batch)
|
||||
|
||||
return written
|
||||
|
||||
|
||||
# -----------------------
|
||||
# Main
|
||||
# -----------------------
|
||||
def main():
|
||||
if not INFLUX_TOKEN:
|
||||
raise RuntimeError("INFLUX_TOKEN fehlt (Env-Var INFLUX_TOKEN setzen).")
|
||||
|
||||
with InfluxDBClient(url=INFLUX_URL, token=INFLUX_TOKEN, org=INFLUX_ORG, timeout=900_000) as client:
|
||||
ensure_bucket(client, TARGET_BUCKET)
|
||||
|
||||
type_map = build_field_type_map_from_excel(EXCEL_PATH)
|
||||
query_api = client.query_api()
|
||||
write_api = client.write_api(write_options=SYNCHRONOUS)
|
||||
|
||||
for meas in MEASUREMENTS:
|
||||
do_cast = meas in ("hp_master", "hp_slave")
|
||||
cur, total = START_DT, 0
|
||||
print(f"\n== {meas} (cast={'ON' if do_cast else 'OFF'}) ==")
|
||||
|
||||
while cur < STOP_DT:
|
||||
nxt = min(cur + WINDOW, STOP_DT)
|
||||
|
||||
if window_already_migrated(query_api, meas, cur, nxt):
|
||||
print(f"{cur.isoformat()} -> {nxt.isoformat()} : SKIP (existiert schon)")
|
||||
cur = nxt
|
||||
continue
|
||||
|
||||
n = migrate_window(query_api, write_api, meas, cur, nxt, type_map, do_cast)
|
||||
total += n
|
||||
print(f"{cur.isoformat()} -> {nxt.isoformat()} : {n} (gesamt {total})")
|
||||
cur = nxt
|
||||
|
||||
print(f"== Fertig {meas}: {total} Punkte ==")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
25
energysystem.py
Normal file
25
energysystem.py
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
|
||||
|
||||
class EnergySystem():
|
||||
def __init__(self):
|
||||
self.components = []
|
||||
|
||||
def add_components(self, *args):
|
||||
for comp in args:
|
||||
self.components.append(comp)
|
||||
|
||||
def get_state_and_store_to_database(self, db):
|
||||
state = {}
|
||||
for comp in self.components:
|
||||
component_state = comp.get_state()
|
||||
state[comp.device_name] = component_state
|
||||
db.store_data(comp.device_name, component_state)
|
||||
|
||||
return state
|
||||
|
||||
def get_component_by_name(self, name):
|
||||
for comp in self.components:
|
||||
if comp.device_name == name:
|
||||
return comp
|
||||
|
||||
BIN
forecaster/__pycache__/weather_forecaster.cpython-312.pyc
Normal file
BIN
forecaster/__pycache__/weather_forecaster.cpython-312.pyc
Normal file
Binary file not shown.
61
forecaster/weather_forecaster.py
Normal file
61
forecaster/weather_forecaster.py
Normal file
@@ -0,0 +1,61 @@
|
||||
#!/usr/bin/env python3
|
||||
import time
|
||||
import datetime as dt
|
||||
import requests
|
||||
from zoneinfo import ZoneInfo
|
||||
from matplotlib import pyplot as plt
|
||||
import pandas as pd
|
||||
|
||||
TZ = "Europe/Berlin"
|
||||
DAYS = 2
|
||||
|
||||
OPEN_METEO_URL = "https://api.open-meteo.com/v1/forecast"
|
||||
|
||||
class WeatherForecaster:
|
||||
def __init__(self, latitude, longitude):
|
||||
self.lat = latitude
|
||||
self.lon = longitude
|
||||
|
||||
def get_hourly_forecast(self, start_hour, days):
|
||||
start_hour_local = start_hour
|
||||
end_hour_local = start_hour_local + dt.timedelta(days=days)
|
||||
|
||||
params = {
|
||||
"latitude": self.lat,
|
||||
"longitude": self.lon,
|
||||
"hourly": ["temperature_2m", "shortwave_radiation", "wind_speed_10m"],
|
||||
"timezone": TZ,
|
||||
"start_hour": start_hour_local.strftime("%Y-%m-%dT%H:%M"),
|
||||
"end_hour": end_hour_local.strftime("%Y-%m-%dT%H:%M")
|
||||
}
|
||||
|
||||
h = requests.get(OPEN_METEO_URL, params=params).json()["hourly"]
|
||||
|
||||
time_stamps = h["time"]
|
||||
time_stamps = [
|
||||
dt.datetime.fromisoformat(t).replace(tzinfo=ZoneInfo(TZ))
|
||||
for t in time_stamps
|
||||
]
|
||||
|
||||
weather = pd.DataFrame(index=time_stamps)
|
||||
weather["ghi"] = h["shortwave_radiation"]
|
||||
weather["temp_air"] = h["temperature_2m"]
|
||||
weather["wind_speed"] = h["wind_speed_10m"]
|
||||
|
||||
return weather
|
||||
|
||||
|
||||
|
||||
if __name__=='__main__':
|
||||
|
||||
weather_forecast = WeatherForecaster(latitude=48.041, longitude=7.862)
|
||||
while True:
|
||||
now = dt.datetime.now()
|
||||
secs = 60 - now.second #(60 - now.minute) * 60 - now.second # Sekunden bis volle Stunde
|
||||
time.sleep(secs)
|
||||
|
||||
now_local = dt.datetime.now()
|
||||
start_hour_local = (now_local + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
|
||||
time_stamps, temps, ghi, wind_speed = weather_forecast.get_hourly_forecast(start_hour_local, DAYS)
|
||||
plt.plot(time_stamps, temps)
|
||||
plt.show()
|
||||
201
heat_pump.py
201
heat_pump.py
@@ -1,62 +1,173 @@
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
import pandas as pd
|
||||
import time
|
||||
import struct
|
||||
import math
|
||||
|
||||
|
||||
class HeatPump:
|
||||
def __init__(self, ip_address: str):
|
||||
def __init__(self, device_name: str, ip_address: str, port: int = 502,
|
||||
excel_path: str = "modbus_registers/heat_pump_registers.xlsx",
|
||||
sheet_name: str = "Register_Map"):
|
||||
self.device_name = device_name
|
||||
self.ip = ip_address
|
||||
self.client = None
|
||||
self.connect_to_modbus()
|
||||
self.registers = None
|
||||
self.get_registers()
|
||||
self.port = port
|
||||
self.client = ModbusTcpClient(self.ip, port=self.port)
|
||||
|
||||
def connect_to_modbus(self):
|
||||
port = 502
|
||||
self.client = ModbusTcpClient(self.ip, port=port)
|
||||
self.excel_path = excel_path
|
||||
self.sheet_name = sheet_name
|
||||
self.registers = self.get_registers()
|
||||
|
||||
# -------------
|
||||
# Connection
|
||||
# -------------
|
||||
def connect(self) -> bool:
|
||||
ok = self.client.connect()
|
||||
if not ok:
|
||||
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
|
||||
return ok
|
||||
|
||||
def close(self):
|
||||
try:
|
||||
if not self.client.connect():
|
||||
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
|
||||
exit(1)
|
||||
print("Verbindung zur Wärmepumpe erfolgreich.")
|
||||
except KeyboardInterrupt:
|
||||
print("Beendet durch Benutzer (Ctrl+C).")
|
||||
finally:
|
||||
self.client.close()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def get_registers(self):
|
||||
# Excel-Datei mit den Input-Registerinformationen
|
||||
excel_path = "data/ModBus TCPIP 1.17(1).xlsx"
|
||||
xls = pd.ExcelFile(excel_path)
|
||||
df_input_registers = xls.parse('04 Input Register')
|
||||
# -------------
|
||||
# Excel parsing
|
||||
# -------------
|
||||
def get_registers(self) -> dict:
|
||||
df = pd.read_excel(self.excel_path, sheet_name=self.sheet_name)
|
||||
df = df[df["Register_Type"].astype(str).str.upper() == "IR"].copy()
|
||||
|
||||
# Relevante Spalten bereinigen
|
||||
df_clean = df_input_registers[['MB Adresse', 'Variable', 'Beschreibung', 'Variabel Typ']].dropna()
|
||||
df_clean['MB Adresse'] = df_clean['MB Adresse'].astype(int)
|
||||
df["Address"] = df["Address"].astype(int)
|
||||
df["Length"] = df["Length"].astype(int)
|
||||
df["Data_Type"] = df["Data_Type"].astype(str).str.upper()
|
||||
df["Byteorder"] = df["Byteorder"].astype(str).str.upper()
|
||||
|
||||
# Dictionary aus Excel erzeugen
|
||||
self.registers = {
|
||||
row['MB Adresse']: {
|
||||
'desc': row['Beschreibung'],
|
||||
'type': 'REAL' if row['Variabel Typ'] == 'REAL' else 'INT'
|
||||
df["Scaling"] = df.get("Scaling", 1.0)
|
||||
df["Scaling"] = df["Scaling"].fillna(1.0).astype(float)
|
||||
|
||||
df["Offset"] = df.get("Offset", 0.0)
|
||||
df["Offset"] = df["Offset"].fillna(0.0).astype(float)
|
||||
|
||||
regs = {}
|
||||
for _, row in df.iterrows():
|
||||
regs[int(row["Address"])] = {
|
||||
"length": int(row["Length"]),
|
||||
"data_type": row["Data_Type"],
|
||||
"byteorder": row["Byteorder"],
|
||||
"scaling": float(row["Scaling"]),
|
||||
"offset": float(row["Offset"]),
|
||||
"tag": str(row.get("Tag_Name", "")).strip(),
|
||||
"desc": "" if pd.isna(row.get("Description")) else str(row.get("Description")).strip(),
|
||||
}
|
||||
for _, row in df_clean.iterrows()
|
||||
}
|
||||
return regs
|
||||
|
||||
def get_data(self):
|
||||
data = {}
|
||||
data['Zeit'] = time.strftime('%Y-%m-%d %H:%M:%S')
|
||||
for address, info in self.registers.items():
|
||||
reg_type = info['type']
|
||||
result = self.client.read_input_registers(address, count=2 if reg_type == 'REAL' else 1)
|
||||
if result.isError():
|
||||
print(f"Fehler beim Lesen von Adresse {address}: {result}")
|
||||
continue
|
||||
# -------------
|
||||
# Byteorder handling
|
||||
# -------------
|
||||
@staticmethod
|
||||
def _registers_to_bytes(registers: list[int], byteorder_code: str) -> bytes:
|
||||
"""
|
||||
registers: Liste von uint16 (0..65535), wie pymodbus sie liefert.
|
||||
byteorder_code: AB, ABCD, CDAB, BADC, DCBA (gemäß Template)
|
||||
Rückgabe: bytes in der Reihenfolge, wie sie für struct.unpack benötigt werden.
|
||||
"""
|
||||
code = (byteorder_code or "ABCD").upper()
|
||||
|
||||
if reg_type == 'REAL':
|
||||
value = result.registers[0] / 10.0
|
||||
else:
|
||||
value = result.registers[0]
|
||||
# Pro Register: 16-bit => zwei Bytes (MSB, LSB)
|
||||
words = [struct.pack(">H", r & 0xFFFF) for r in registers] # big endian pro Wort
|
||||
|
||||
if len(words) == 1:
|
||||
w = words[0] # b'\xAA\xBB'
|
||||
if code in ("AB", "ABCD", "CDAB"):
|
||||
return w
|
||||
if code == "BADC": # byte swap
|
||||
return w[::-1]
|
||||
if code == "DCBA": # byte swap (bei 16-bit identisch zu BADC)
|
||||
return w[::-1]
|
||||
return w
|
||||
|
||||
# 32-bit (2 words) oder 64-bit (4 words): Word/Byte swaps abbilden
|
||||
# words[0] = high word bytes, words[1] = low word bytes (in Modbus-Reihenfolge gelesen)
|
||||
if code == "ABCD":
|
||||
ordered = words
|
||||
elif code == "CDAB":
|
||||
# word swap
|
||||
ordered = words[1:] + words[:1]
|
||||
elif code == "BADC":
|
||||
# byte swap innerhalb jedes Words
|
||||
ordered = [w[::-1] for w in words]
|
||||
elif code == "DCBA":
|
||||
# word + byte swap
|
||||
ordered = [w[::-1] for w in (words[1:] + words[:1])]
|
||||
else:
|
||||
ordered = words
|
||||
|
||||
return b"".join(ordered)
|
||||
|
||||
@staticmethod
|
||||
def _decode_by_type(raw_bytes: bytes, data_type: str):
|
||||
dt = (data_type or "").upper()
|
||||
|
||||
# struct: > = big endian, < = little endian
|
||||
# Wir liefern raw_bytes bereits in der richtigen Reihenfolge; daher nutzen wir ">" konsistent.
|
||||
if dt == "UINT16":
|
||||
return struct.unpack(">H", raw_bytes[:2])[0]
|
||||
if dt == "INT16":
|
||||
return struct.unpack(">h", raw_bytes[:2])[0]
|
||||
if dt == "UINT32":
|
||||
return struct.unpack(">I", raw_bytes[:4])[0]
|
||||
if dt == "INT32":
|
||||
return struct.unpack(">i", raw_bytes[:4])[0]
|
||||
if dt == "FLOAT32":
|
||||
return struct.unpack(">f", raw_bytes[:4])[0]
|
||||
if dt == "FLOAT64":
|
||||
return struct.unpack(">d", raw_bytes[:8])[0]
|
||||
|
||||
raise ValueError(f"Unbekannter Data_Type: {dt}")
|
||||
|
||||
def _decode_value(self, registers: list[int], meta: dict):
|
||||
raw = self._registers_to_bytes(registers, meta["byteorder"])
|
||||
val = self._decode_by_type(raw, meta["data_type"])
|
||||
return (val * meta["scaling"]) + meta["offset"]
|
||||
|
||||
# -------------
|
||||
# Reading
|
||||
# -------------
|
||||
def get_state(self) -> dict:
|
||||
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
|
||||
|
||||
if not self.connect():
|
||||
data["error"] = "connect_failed"
|
||||
return data
|
||||
|
||||
try:
|
||||
for address, meta in self.registers.items():
|
||||
count = int(meta["length"])
|
||||
result = self.client.read_input_registers(address, count=count)
|
||||
if result.isError():
|
||||
print(f"Fehler beim Lesen von Adresse {address}: {result}")
|
||||
continue
|
||||
|
||||
try:
|
||||
value = self._decode_value(result.registers, meta)
|
||||
except Exception as e:
|
||||
print(f"Decode-Fehler an Adresse {address} ({meta.get('tag','')}): {e}")
|
||||
continue
|
||||
|
||||
# Optional filter
|
||||
# if self._is_invalid_sentinel(value):
|
||||
# continue
|
||||
value = float(value)
|
||||
desc = meta.get("desc") or ""
|
||||
field_name = f"{address} - {desc}".strip(" -")
|
||||
data[field_name] = float(value)
|
||||
|
||||
print(f"Adresse {address} - {desc}: {value}")
|
||||
|
||||
finally:
|
||||
self.close()
|
||||
|
||||
print(f"Adresse {address} - {info['desc']}: {value}")
|
||||
data[f"{address} - {info['desc']}"] = value
|
||||
return data
|
||||
|
||||
40
main.py
40
main.py
@@ -1,17 +1,45 @@
|
||||
import time
|
||||
from datetime import datetime
|
||||
from data_base_csv import DataBaseCsv
|
||||
from data_base_influx import DataBaseInflux
|
||||
from heat_pump import HeatPump
|
||||
from pv_inverter import PvInverter
|
||||
from solaredge_meter import SolaredgeMeter
|
||||
from shelly_pro_3m import ShellyPro3m
|
||||
from energysystem import EnergySystem
|
||||
from sg_ready_controller import SgReadyController
|
||||
|
||||
interval = 10 # z.B. alle 10 Sekunden
|
||||
interval_seconds = 10
|
||||
|
||||
db = DataBaseCsv('modbus_log.csv')
|
||||
hp = HeatPump(ip_address='10.0.0.10')
|
||||
es = EnergySystem()
|
||||
|
||||
db = DataBaseInflux(
|
||||
url="http://192.168.1.146:8086",
|
||||
token="Cw_naEZyvJ3isiAh1P4Eq3TsjcHmzzDFS7SlbKDsS6ZWL04fMEYixWqtNxGThDdG27S9aW5g7FP9eiq5z1rsGA==",
|
||||
org="allmende",
|
||||
bucket="allmende_db_v3"
|
||||
)
|
||||
|
||||
hp_master = HeatPump(device_name='hp_master', ip_address='10.0.0.10', port=502)
|
||||
hp_slave = HeatPump(device_name='hp_slave', ip_address='10.0.0.11', port=502)
|
||||
shelly = ShellyPro3m(device_name='wohnung_2_6', ip_address='192.168.1.121')
|
||||
wr = PvInverter(device_name='solaredge_master', ip_address='192.168.1.112')
|
||||
meter = SolaredgeMeter(device_name='solaredge_meter', ip_address='192.168.1.112')
|
||||
|
||||
es.add_components(hp_master, hp_slave, shelly, wr, meter)
|
||||
controller = SgReadyController(es)
|
||||
|
||||
now = datetime.now()
|
||||
while True:
|
||||
now = datetime.now()
|
||||
if now.second % interval == 0 and now.microsecond < 100_000:
|
||||
db.store_data(hp.get_data())
|
||||
if now.second % interval_seconds == 0 and now.microsecond < 100_000:
|
||||
state = es.get_state_and_store_to_database(db)
|
||||
mode = controller.perform_action(heat_pump_name='hp_master', meter_name='solaredge_meter', state=state)
|
||||
|
||||
if mode == 'mode1':
|
||||
mode_as_binary = 0
|
||||
else:
|
||||
mode_as_binary = 1
|
||||
db.store_data('sg_ready', {'mode': mode_as_binary})
|
||||
|
||||
time.sleep(0.1)
|
||||
|
||||
|
||||
713
modbus_log.csv
713
modbus_log.csv
@@ -1,713 +0,0 @@
|
||||
Zeit,0 - Primärpumpe,1 - Ventilator,2 - Ladepumpe,3 - Ladepumpe Kühlen,4 - Boilerpumpe,5 - Magroladepumpe 0-100%,6 - Kondensator Ventil,10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm),11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt),12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm),13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt),14 - Luftmodul.1 Lufteintritttemperatur,15 - Luftmodul.1 Lamellentemperatur,20 - Kondensationstemperatur,21 - Flüssigkeitstemperatur,22 - Verdampfunstemperatur,23 - Sauggastemperatur,32 - Expansionsventil A Öffnungsgrad,24 - Heisgastemperatur,28 - Verdampfungstemperatur Verdichter 2 bei CPV,25 - Sauggastemperatur 2,33 - Expansionsventil B Öffnungsgrad,26 - Grundwassertemperatur VL (Warm),27 - Grundwassertemperatur RL (Kalt),29 - Durchfluss Gebäudeseite Heizen,30 - Durchfluss Gebäudeseite Kühlen,31 - Durchfluss Umweltseite,40 - Betreibsstunden Verdichter 1 ,42 - Betreibsstunden Verdichter 2,44 - Betreibsstunden 2 Wäremeerzeuger,46 - WP Leistung in %,50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur,70 - Vorlauftemperatur Mischerkreis 1,90 - Vorlauftemperatur Mischerkreis 2,110 - Vorlauftemperatur Mischerkreis 3,130 - Vorlauftemperatur Mischerkreis 4,230 - Vorlauftemperatur Mischerkreis 5,250 - Vorlauftemperatur Mischerkreis 6,150 - Trinkwarmwasserspiecher oben (Ein),151 - Betreibsstunden 2 Wäremeerzeuger Boiler,153 - Trinkwarmwasserspiecher unten (Aus),154 - VL Magroladung Sekundär,155 - TWW1 Magroladungventil 0-100%,160 - Trinkwarmwasserspiecher 2 oben (Ein),161 - Trinkwarmwasserspiecher 2 unten (Aus),162 - VL Magroladung Sekundär,170 - Puffertemperatur Heizung,171 - Maximale Anforderung Heizen an WP,210 - Puffertemperatur Kühlen,211 - Umweltseite Passivkühlen Wärmetauscher Eintritt,212 - Umweltseite Passivkühlen Wärmetauscher Asutritt,213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt,214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt,215 - Minimale Anforderung Kühlen an WP,300 - Aussentemperatur,310 - Sonderanwendungen ,"311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel",313 - Stromaufnahme FU Ausgang,315 - Spannung FU Ausgang,319 - Leistung FU Ausgang kW,323 - Energieverbrauch FU kWh bei ABB FU,330 - Fühlermodul Eingang 1,331 - Fühlermodul Eingang 2,332 - Fühlermodul Eingang 3,333 - Fühlermodul Eingang 4,334 - Fühlermodul Eingang 5,335 - Fühlermodul Eingang 6,336 - Fühlermodul Eingang 7,337 - Fühlermodul Eingang 8,338 - Fühlermodul Eingang 9,339 - Fühlermodul Eingang 10,510 - Störung 1 Nummer,512 - Störung 2 Nummer
|
||||
2025-04-17 15:11:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,25.4,25.8,15.6,0.0,0.0,25.7,23.0,25.6,38.8,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.3,24.4,5553.7,0.0,0.0,0.0,0.0,64.8,0,53.7,0.0,0.0,0.0,0.0,0.0,38.3,0.0,5553.7,13.0,14.9,20.0,19.7,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-17 15:12:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,25.4,25.8,15.6,0.0,0.0,25.7,23.0,25.6,38.8,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.2,24.4,5553.7,0.0,0.0,0.0,0.0,64.8,0,53.7,0.0,0.0,0.0,0.0,0.0,38.2,0.0,5553.7,13.0,14.9,20.0,19.7,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-17 15:12:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,25.4,25.8,15.6,0.0,0.0,25.7,23.0,25.6,38.8,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.0,24.4,5553.7,0.0,0.0,0.0,0.0,64.8,0,53.7,0.0,0.0,0.0,0.0,0.0,38.0,0.0,5553.7,13.0,14.9,20.0,19.7,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-17 15:20:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,25.5,26.2,16.0,0.0,0.0,26.0,23.3,25.9,38.2,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.3,24.5,5553.7,0.0,0.0,0.0,0.0,64.7,0,53.4,0.0,0.0,0.0,0.0,0.0,38.3,0.0,5553.7,13.2,15.0,20.0,19.7,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-17 15:20:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,25.5,26.2,16.0,0.0,0.0,26.1,23.3,25.9,38.2,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.3,24.5,5553.7,0.0,0.0,0.0,0.0,64.7,0,53.4,0.0,0.0,0.0,0.0,0.0,38.3,0.0,5553.7,13.2,15.0,20.0,19.7,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:45:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.3,13.4,11.6,0.0,0.0,16.5,35.1,16.3,16.9,30.0,64.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,39.6,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,63.4,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:45:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,31.3,13.5,11.6,0.0,0.0,16.5,34.8,16.3,17.0,30.0,64.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.0,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,63.2,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:45:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,31.3,13.6,11.7,0.0,0.0,16.6,34.5,16.4,17.1,30.0,64.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,63.1,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:45:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.3,13.7,11.7,0.0,0.0,16.7,34.2,16.5,17.2,30.0,64.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.9,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:45:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.3,13.8,11.7,0.0,0.0,16.8,33.8,16.5,17.2,30.0,63.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:45:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.3,13.9,11.8,0.0,0.0,16.9,33.5,16.5,17.3,30.0,63.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.6,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:46:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.4,14.0,11.8,0.0,0.0,16.9,33.1,16.6,17.3,30.0,63.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.4,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:46:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,31.4,14.0,11.8,0.0,0.0,16.9,32.8,16.6,17.4,30.0,63.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:46:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,31.4,14.1,11.9,0.0,0.0,17.0,32.4,16.7,17.5,30.0,62.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:46:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,31.5,14.2,11.9,0.0,0.0,17.0,32.0,16.7,17.5,30.0,62.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:46:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.5,14.3,11.9,0.0,0.0,17.0,31.6,16.7,17.6,30.0,62.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:46:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.5,14.4,12.0,0.0,0.0,17.0,31.2,16.8,17.6,30.0,62.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.2,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:47:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.5,14.4,12.0,0.0,0.0,17.1,30.8,16.8,17.7,30.0,61.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:47:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.6,14.5,12.1,0.0,0.0,17.1,30.4,16.9,17.8,30.0,61.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:47:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.6,14.6,12.1,0.0,0.0,17.2,30.0,16.9,17.8,30.0,61.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:47:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.6,14.7,12.1,0.0,0.0,17.2,29.7,16.9,17.9,30.0,61.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:47:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.7,14.7,12.1,0.0,0.0,17.2,29.4,17.0,18.0,30.0,60.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.9,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:47:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.7,14.8,12.2,0.0,0.0,17.2,29.2,17.0,18.1,30.0,60.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.1,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:48:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.7,14.9,12.2,0.0,0.0,17.3,28.8,17.1,18.2,30.0,60.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:48:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.8,14.9,12.2,0.0,0.0,17.3,28.3,17.1,18.3,30.0,60.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:48:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.8,15.0,12.2,0.0,0.0,17.4,26.2,17.2,18.4,30.0,59.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:48:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.8,15.0,12.3,0.0,0.0,17.5,23.2,17.2,18.5,30.0,59.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.7,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:48:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.1,12.3,0.0,0.0,17.5,21.1,17.3,18.7,30.0,59.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.7,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:48:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.2,12.3,0.0,0.0,17.6,20.0,17.4,18.9,30.0,59.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.7,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:49:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.2,12.3,0.0,0.0,17.6,19.5,17.4,19.0,30.0,58.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.6,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:49:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.3,12.3,0.0,0.0,17.7,19.1,17.4,19.2,30.0,58.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.5,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:49:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.0,15.4,12.4,0.0,0.0,17.7,18.8,17.5,19.4,30.0,58.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.3,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:49:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.0,15.4,12.4,0.0,0.0,17.8,18.6,17.5,19.5,30.0,58.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.3,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:49:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.0,15.5,12.4,0.0,0.0,17.8,18.5,17.6,19.7,30.0,58.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.2,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:49:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.1,15.6,12.4,0.0,0.0,17.9,18.4,17.6,19.9,30.0,57.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.1,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:50:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.1,15.6,12.4,0.0,0.0,17.9,18.3,17.7,20.1,30.0,57.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:50:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.1,15.7,12.5,0.0,0.0,18.0,18.3,17.7,20.3,30.0,57.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.9,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:50:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.1,15.8,12.5,0.0,0.0,18.0,18.3,17.8,20.5,30.0,57.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.8,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:50:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,15.8,12.5,0.0,0.0,18.1,18.3,17.9,20.8,30.0,57.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.7,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:50:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,15.9,12.5,0.0,0.0,18.1,18.3,17.9,21.0,30.0,56.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.5,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,15.9,12.5,0.0,0.0,18.2,18.3,18.0,21.3,30.0,56.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.4,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:51:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,16.0,12.5,0.0,0.0,18.3,18.4,18.0,21.5,30.0,56.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.2,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:51:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,16.1,12.5,0.0,0.0,18.3,18.4,18.1,21.8,30.0,56.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.1,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:51:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.1,12.6,0.0,0.0,18.4,18.5,18.1,22.0,30.0,56.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:51:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.2,12.6,0.0,0.0,18.4,18.5,18.1,22.3,30.0,55.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,59.9,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:51:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.3,12.6,0.0,0.0,18.5,18.5,18.2,22.5,30.0,55.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:52:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.3,12.6,0.0,0.0,18.5,18.5,18.2,22.8,30.0,55.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:52:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.4,12.6,0.0,0.0,18.5,18.6,18.3,23.1,30.0,55.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:52:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.4,12.6,0.0,0.0,18.6,18.6,18.3,23.3,30.0,55.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:52:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.5,12.6,0.0,0.0,18.6,18.7,18.3,23.5,30.0,55.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:52:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.6,12.7,0.0,0.0,18.7,18.7,18.4,23.8,30.0,54.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:52:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.6,12.7,0.0,0.0,18.7,18.7,18.4,24.0,30.0,54.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.4,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:53:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.7,12.7,0.0,0.0,18.7,18.8,18.5,24.2,30.0,54.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.4,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:53:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.8,12.7,0.0,0.0,18.8,18.8,18.5,24.5,30.0,54.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.3,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:53:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.8,12.7,0.0,0.0,18.8,18.8,18.6,24.7,30.0,54.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.2,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:53:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.9,12.7,0.0,0.0,18.8,18.8,18.6,24.9,30.0,54.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:53:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.9,12.7,0.0,0.0,18.9,18.9,18.7,25.2,30.0,54.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:53:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.0,12.7,0.0,0.0,18.9,18.9,18.7,25.4,30.0,53.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.9,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:54:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.0,12.8,0.0,0.0,19.0,19.0,18.7,25.7,30.0,53.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:54:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.1,12.8,0.0,0.0,19.0,19.0,18.8,25.9,30.0,53.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:54:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.1,12.8,0.0,0.0,19.0,19.0,18.8,26.2,30.0,53.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.7,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:54:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.3,17.2,12.8,0.0,0.0,19.1,19.0,18.8,26.4,30.0,53.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.6,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:54:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.3,17.3,12.8,0.0,0.0,19.1,19.1,18.9,26.6,30.0,53.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.5,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:54:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.3,12.8,0.0,0.0,19.1,19.1,18.9,26.9,30.0,53.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.5,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:55:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.3,12.8,0.0,0.0,19.2,19.1,18.9,27.1,30.0,53.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:55:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.4,12.8,0.0,0.0,19.2,19.2,19.0,27.3,30.0,52.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:55:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.4,12.8,0.0,0.0,19.2,19.2,19.0,27.5,30.0,52.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:55:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.5,12.9,0.0,0.0,19.3,19.2,19.0,27.7,30.0,52.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:55:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.5,12.9,0.0,0.0,19.3,19.3,19.1,27.9,30.0,52.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.2,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:55:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.6,12.9,0.0,0.0,19.4,19.3,19.1,28.1,30.0,52.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.2,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:56:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.6,12.9,0.0,0.0,19.4,19.3,19.1,28.3,30.0,52.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:56:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.1,17.7,12.9,0.0,0.0,19.4,19.4,19.2,28.5,30.0,52.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:56:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.7,12.9,0.0,0.0,19.4,19.4,19.2,28.6,30.0,52.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:56:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.8,12.9,0.0,0.0,19.5,19.4,19.2,28.8,30.0,52.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:56:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.8,12.9,0.0,0.0,19.5,19.4,19.3,29.0,30.0,51.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:56:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.9,12.9,0.0,0.0,19.5,19.5,19.3,29.1,30.0,51.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:57:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.9,13.0,0.0,0.0,19.6,19.5,19.3,29.3,30.0,51.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:57:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.0,13.0,0.0,0.0,19.6,19.5,19.4,29.4,30.0,51.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:57:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.0,13.0,0.0,0.0,19.6,19.6,19.4,29.6,30.0,51.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:57:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.1,13.0,0.0,0.0,19.7,19.6,19.5,29.7,30.0,51.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:57:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.1,13.0,0.0,0.0,19.7,19.6,19.5,29.9,30.0,51.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:58:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,32.0,18.1,13.0,0.0,0.0,19.7,19.7,19.5,30.0,30.0,51.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.8,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:58:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.2,13.0,0.0,0.0,19.8,19.7,19.6,30.2,30.0,51.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.7,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:58:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.2,13.0,0.0,0.0,19.8,19.7,19.6,30.3,30.0,50.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.7,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:58:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.3,13.0,0.0,0.0,19.9,19.7,19.6,30.5,30.0,50.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.6,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:58:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.3,13.0,0.0,0.0,19.9,19.8,19.7,30.7,30.0,50.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.5,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:58:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.4,13.0,0.0,0.0,19.9,19.8,19.7,30.8,30.0,50.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.4,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:59:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.4,13.1,0.0,0.0,19.9,19.8,19.7,30.9,30.0,50.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.4,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:59:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.8,18.4,13.1,0.0,0.0,19.9,19.8,19.8,31.1,30.0,50.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.4,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:59:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.8,18.5,13.1,0.0,0.0,20.0,19.9,19.8,31.2,30.0,50.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:59:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.8,18.5,13.1,0.0,0.0,20.0,19.9,19.8,31.3,30.0,50.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:59:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.8,18.5,13.1,0.0,0.0,20.1,19.9,19.8,31.5,30.0,50.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.4,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 10:59:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.8,18.6,13.1,0.0,0.0,20.1,19.9,19.9,31.6,30.0,50.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:00:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.6,13.1,0.0,0.0,20.1,20.0,19.9,31.7,30.0,50.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:00:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.7,13.1,0.0,0.0,20.2,20.0,19.9,31.8,30.0,50.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:00:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.7,13.1,0.0,0.0,20.2,20.0,20.0,31.9,30.0,49.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:00:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.7,13.1,0.0,0.0,20.2,20.1,20.0,32.1,30.0,49.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:00:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.8,13.1,0.0,0.0,20.3,20.1,20.0,32.2,30.0,49.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:00:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.6,18.8,13.1,0.0,0.0,20.3,20.1,20.1,32.3,30.0,49.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:01:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,18.9,13.2,0.0,0.0,20.3,20.1,20.1,32.4,30.0,49.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.1,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:01:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,18.9,13.2,0.0,0.0,20.4,20.2,20.1,32.5,30.0,49.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.1,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:01:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,18.9,13.2,0.0,0.0,20.4,20.2,20.2,32.6,30.0,49.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:01:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,19.0,13.2,0.0,0.0,20.4,20.2,20.2,32.7,30.0,49.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:01:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.0,13.2,0.0,0.0,20.5,20.2,20.2,32.8,30.0,49.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:01:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.0,13.2,0.0,0.0,20.5,20.3,20.3,32.9,30.0,49.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:02:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.1,13.2,0.0,0.0,20.5,20.3,20.3,33.0,30.0,49.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:02:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.1,13.2,0.0,0.0,20.5,20.3,20.3,33.0,30.0,49.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:02:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.1,13.2,0.0,0.0,20.6,20.4,20.4,33.1,30.0,49.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:02:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.4,19.2,13.2,0.0,0.0,20.6,20.4,20.4,33.2,30.0,49.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:02:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.2,13.2,0.0,0.0,20.6,20.4,20.4,33.3,30.0,49.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:02:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.3,13.3,0.0,0.0,20.6,20.5,20.5,33.4,30.0,49.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:03:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.3,13.3,0.0,0.0,20.6,20.5,20.5,33.4,30.0,49.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.8,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:03:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.3,13.3,0.0,0.0,20.7,20.5,20.5,33.5,30.0,48.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:03:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.4,13.3,0.0,0.0,20.7,20.6,20.5,33.6,30.0,48.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:03:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.4,13.3,0.0,0.0,20.7,20.6,20.6,33.6,30.0,48.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:03:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.4,13.3,0.0,0.0,20.8,20.6,20.6,33.7,30.0,48.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.5,13.3,0.0,0.0,20.8,20.6,20.6,33.8,30.0,48.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:04:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.5,13.3,0.0,0.0,20.8,20.7,20.7,33.8,30.0,48.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:04:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.3,19.5,13.3,0.0,0.0,20.9,20.7,20.7,33.9,30.0,48.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.6,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:04:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.6,13.3,0.0,0.0,20.9,20.7,20.7,33.9,30.0,48.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.6,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:04:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.6,13.3,0.0,0.0,20.9,20.7,20.7,34.0,30.0,48.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:04:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.6,13.4,0.0,0.0,20.9,20.8,20.8,34.1,30.0,48.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:05:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.7,13.4,0.0,0.0,21.0,20.8,20.8,34.1,30.0,48.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:05:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.7,13.4,0.0,0.0,21.0,20.8,20.8,34.2,30.0,48.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:05:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.1,19.7,13.4,0.0,0.0,21.0,20.8,20.8,34.2,30.0,48.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:05:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.1,19.8,13.4,0.0,0.0,21.0,20.9,20.9,34.3,30.0,48.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:05:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.1,19.8,13.4,0.0,0.0,21.0,20.9,20.9,34.3,30.0,48.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:05:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.1,19.8,13.4,0.0,0.0,21.1,20.9,20.9,34.4,30.0,48.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:06:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.1,19.9,13.4,0.0,0.0,21.1,20.9,21.0,34.4,30.0,48.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:06:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.1,19.9,13.5,0.0,0.0,21.2,20.9,21.0,34.5,30.0,48.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:06:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,19.9,13.5,0.0,0.0,21.2,20.9,21.0,34.5,30.0,48.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:06:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,19.9,13.5,0.0,0.0,21.2,21.0,21.1,34.6,30.0,48.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:06:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,20.0,13.5,0.0,0.0,21.2,21.0,21.1,34.6,30.0,48.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:06:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,20.0,13.5,0.0,0.0,21.3,21.0,21.1,34.6,30.0,47.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:07:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,20.0,13.5,0.0,0.0,21.3,21.0,21.1,34.7,30.0,47.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:07:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,30.9,20.1,13.5,0.0,0.0,21.3,21.0,21.2,34.7,30.0,47.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:07:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.1,13.5,0.0,0.0,21.4,21.1,21.2,34.8,30.0,47.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:07:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.1,13.5,0.0,0.0,21.4,21.1,21.2,34.8,30.0,47.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:07:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.2,13.5,0.0,0.0,21.4,21.1,21.2,34.8,30.0,47.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:07:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.2,13.5,0.0,0.0,21.4,21.1,21.3,34.9,30.0,47.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:08:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.2,13.6,0.0,0.0,21.5,21.1,21.3,34.9,30.0,47.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:08:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.3,13.6,0.0,0.0,21.5,21.2,21.3,35.0,30.0,47.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:08:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.3,13.6,0.0,0.0,21.5,21.2,21.3,35.0,30.0,47.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:08:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.4,13.6,0.0,0.0,21.5,21.2,21.4,35.0,30.0,47.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:08:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.4,13.6,0.0,0.0,21.5,21.2,21.4,35.1,30.0,47.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:08:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.4,13.6,0.0,0.0,21.6,21.2,21.4,35.1,30.0,47.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:09:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.5,13.6,0.0,0.0,21.6,21.3,21.4,35.2,30.0,47.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:09:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.5,13.6,0.0,0.0,21.6,21.3,21.5,35.2,30.0,47.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:09:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.5,13.6,0.0,0.0,21.7,21.3,21.5,35.2,30.0,47.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:09:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.6,13.6,0.0,0.0,21.7,21.3,21.5,35.3,30.0,47.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:09:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.6,13.7,0.0,0.0,21.7,21.3,21.5,35.3,30.0,47.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.0,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:09:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.6,13.7,0.0,0.0,21.8,21.4,21.5,35.4,30.0,47.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.0,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:10:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.6,35.4,30.0,47.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:10:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.6,35.4,30.0,47.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:10:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.6,35.5,30.0,47.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:10:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.7,35.5,30.0,47.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:10:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.5,20.8,13.7,0.0,0.0,21.9,21.5,21.7,35.6,30.0,47.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.5,20.8,13.7,0.0,0.0,21.9,21.5,21.7,35.6,30.0,47.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:11:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.5,20.8,13.7,0.0,0.0,21.9,21.5,21.7,35.6,30.0,47.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:11:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.5,20.9,13.7,0.0,0.0,22.0,21.6,21.8,35.7,30.0,47.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:11:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,20.9,13.7,0.0,0.0,22.0,21.6,21.8,35.7,30.0,46.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:11:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,20.9,13.8,0.0,0.0,22.0,21.6,21.8,35.7,30.0,46.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:11:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,21.0,13.8,0.0,0.0,22.0,21.6,21.8,35.8,30.0,46.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:12:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,21.0,13.8,0.0,0.0,22.1,21.6,21.9,35.8,30.0,46.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:12:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.3,21.0,13.8,0.0,0.0,22.1,21.6,21.9,35.8,30.0,46.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:12:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.3,21.1,13.8,0.0,0.0,22.1,21.6,21.9,35.9,30.0,46.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.8,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:12:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.3,21.1,13.8,0.0,0.0,22.1,21.7,21.9,35.9,30.0,46.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:12:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.3,21.1,13.8,0.0,0.0,22.1,21.7,21.9,35.9,30.0,46.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:12:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,35.9,30.0,46.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:13:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,36.0,30.0,46.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:13:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,36.0,30.0,46.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:13:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,36.0,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:13:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.3,13.8,0.0,0.0,22.3,21.7,22.1,36.1,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:13:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.3,13.9,0.0,0.0,22.3,21.8,22.1,36.1,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:13:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.3,13.9,0.0,0.0,22.3,21.8,22.1,36.1,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:14:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.4,13.9,0.0,0.0,22.3,21.8,22.1,36.1,30.0,46.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:14:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.0,21.4,13.9,0.0,0.0,22.4,21.8,22.2,36.2,30.0,46.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:14:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.0,21.4,13.9,0.0,0.0,22.4,21.8,22.2,36.2,30.0,46.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:14:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.0,21.4,13.9,0.0,0.0,22.4,21.8,22.2,36.2,30.0,46.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:14:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,30.0,21.5,13.9,0.0,0.0,22.4,21.9,22.2,36.3,30.0,46.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:14:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,30.0,21.5,13.9,0.0,0.0,22.5,21.9,22.2,36.3,30.0,46.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:15:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.5,13.9,0.0,0.0,22.5,21.9,22.3,36.3,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:15:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.5,14.0,0.0,0.0,22.5,21.9,22.3,36.3,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:15:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.6,14.0,0.0,0.0,22.5,21.9,22.3,36.3,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:15:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.6,14.0,0.0,0.0,22.5,21.9,22.3,36.4,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:15:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.6,14.0,0.0,0.0,22.6,21.9,22.4,36.4,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:15:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,21.9,22.4,36.4,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:16:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,22.0,22.4,36.4,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:16:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,22.0,22.4,36.5,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:16:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,22.0,22.4,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:16:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.7,21.8,14.0,0.0,0.0,22.6,22.0,22.4,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:16:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.7,21.8,14.0,0.0,0.0,22.6,22.0,22.5,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:16:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.7,21.8,14.0,0.0,0.0,22.7,22.0,22.5,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:17:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.7,21.8,14.0,0.0,0.0,22.7,22.0,22.5,36.6,30.0,45.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:17:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.0,22.5,36.6,30.0,45.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:17:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.1,22.5,36.6,30.0,45.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:17:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.1,22.6,36.6,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.4,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:17:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.1,22.6,36.6,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.4,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:18:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:18:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.5,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:18:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.5,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:18:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.5,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:18:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.5,22.1,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:18:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.1,14.1,0.0,0.0,22.8,22.1,22.7,36.8,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:19:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.1,14.1,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:19:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.1,14.1,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.2,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:19:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:19:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:19:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:19:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.9,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:20:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.2,14.2,0.0,0.0,22.9,22.2,22.8,36.9,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:20:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.3,14.2,0.0,0.0,23.0,22.2,22.8,36.9,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:20:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.2,22.3,14.2,0.0,0.0,23.0,22.2,22.8,36.9,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:20:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.2,22.3,14.2,0.0,0.0,23.0,22.2,22.8,36.9,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:20:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.2,22.3,14.2,0.0,0.0,23.0,22.2,22.8,37.0,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:20:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.2,22.4,14.2,0.0,0.0,23.0,22.2,22.8,37.0,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:21:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.2,22.4,14.2,0.0,0.0,23.0,22.2,22.8,37.0,30.0,45.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:21:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.4,14.2,0.0,0.0,23.0,22.1,22.8,37.0,30.0,45.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:21:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.4,14.3,0.0,0.0,23.0,22.1,22.9,37.0,30.0,45.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.8,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:21:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.4,14.3,0.0,0.0,23.1,22.1,22.9,37.0,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.8,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:21:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:21:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:22:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.0,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:22:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.0,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.4,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:22:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.0,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:22:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,29.0,22.6,14.3,0.0,0.0,23.1,22.1,23.0,37.1,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:22:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.1,23.0,37.2,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:22:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.1,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:23:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.1,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:23:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.2,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:23:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.7,14.3,0.0,0.0,23.2,22.2,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:23:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.3,0.0,0.0,23.2,22.2,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:23:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.4,0.0,0.0,23.2,22.2,23.1,37.2,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:24:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:24:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.8,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:24:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.7,22.8,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:24:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.7,22.8,14.4,0.0,0.0,23.3,22.3,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:24:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.7,22.8,14.4,0.0,0.0,23.3,22.3,23.1,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:25:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.7,22.8,14.4,0.0,0.0,23.3,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:25:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.7,22.9,14.4,0.0,0.0,23.3,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.1,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.1,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:25:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.7,22.9,14.4,0.0,0.0,23.4,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.0,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:25:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,22.9,14.4,0.0,0.0,23.4,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:25:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,22.9,14.4,0.0,0.0,23.4,22.3,23.2,37.4,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:25:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,22.9,14.5,0.0,0.0,23.4,22.3,23.2,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:26:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,23.0,14.5,0.0,0.0,23.4,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.8,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.8,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:26:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,23.0,14.5,0.0,0.0,23.4,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.7,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:26:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.4,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.7,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:26:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.5,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.7,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:26:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.5,22.5,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:26:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.5,22.5,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:27:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.1,14.5,0.0,0.0,23.5,22.5,23.4,37.4,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:27:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.5,23.1,14.5,0.0,0.0,23.6,22.6,23.4,37.4,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:27:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.1,14.5,0.0,0.0,23.6,22.6,23.4,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:27:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.1,14.5,0.0,0.0,23.6,22.7,23.4,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:27:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.1,14.5,0.0,0.0,23.6,22.7,23.4,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:27:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.2,14.5,0.0,0.0,23.6,22.7,23.5,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.5,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:28:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.2,14.5,0.0,0.0,23.7,22.8,23.5,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:28:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.5,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:28:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.5,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.2,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:28:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:28:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:28:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.9,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:29:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.3,14.6,0.0,0.0,23.8,22.9,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:29:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.2,23.3,14.6,0.0,0.0,23.8,22.9,23.6,37.5,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:29:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.2,23.3,14.6,0.0,0.0,23.8,22.9,23.6,37.5,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:29:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.3,14.6,0.0,0.0,23.8,22.9,23.7,37.5,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.9,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:29:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.3,14.6,0.0,0.0,23.8,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:29:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.4,14.6,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:30:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.4,14.6,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:30:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.4,14.6,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:30:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:30:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,23.9,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:30:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.6,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:31:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.5,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:31:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.5,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:31:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:31:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.0,23.2,23.9,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:31:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:32:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:32:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.6,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:32:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,28.0,23.6,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:32:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.7,0.0,0.0,24.1,23.2,24.0,37.7,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:32:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:32:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:33:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:33:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.7,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:33:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,54.9,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:33:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.2,23.3,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.1,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:33:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.2,23.3,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:33:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.3,23.3,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:34:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.3,23.4,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:34:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.8,14.8,0.0,0.0,24.3,23.4,24.1,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:34:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.1,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,54.9,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:34:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:34:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:34:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:35:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.8,14.9,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:35:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.8,14.9,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:35:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.9,14.9,0.0,0.0,24.5,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:35:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.9,14.9,0.0,0.0,24.5,23.4,24.2,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:35:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.4,24.2,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:35:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.5,24.2,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:36:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:36:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:36:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,24.0,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:36:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:36:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.6,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:36:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.6,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:37:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.6,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:37:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.3,24.0,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:37:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.3,24.0,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:37:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.3,24.0,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:37:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.3,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:38:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.3,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:38:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.2,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:38:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.2,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:38:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.2,24.1,15.0,0.0,0.0,24.7,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:38:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.1,15.0,0.0,0.0,24.7,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:38:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:39:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:39:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:39:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.0,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:39:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.0,24.2,15.0,0.0,0.0,24.7,23.6,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:39:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.0,24.2,15.1,0.0,0.0,24.8,23.6,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:39:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.2,15.1,0.0,0.0,24.8,23.6,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:40:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.2,15.1,0.0,0.0,24.8,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:40:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.3,15.1,0.0,0.0,24.8,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:40:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:40:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:40:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:40:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:41:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:41:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.7,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:41:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.7,24.3,15.1,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:41:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.7,24.4,15.1,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:41:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:41:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:42:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:42:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:42:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:42:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:42:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:42:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.5,15.2,0.0,0.0,24.9,23.7,24.8,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:43:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.7,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:43:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.4,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.7,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:43:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.7,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:43:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:43:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:44:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:44:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:44:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:44:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.0,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:44:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:45:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:45:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.6,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:45:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.2,0,54.6,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:45:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.2,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:45:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.2,0,54.6,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:45:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.1,0,54.6,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:46:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.7,15.4,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.1,0,54.6,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:46:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.2,24.7,15.4,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.1,0,54.6,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:46:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.7,24.9,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.0,0,54.6,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:46:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.0,0,54.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:46:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.9,0,54.5,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:46:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.9,0,54.5,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:47:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,63.8,0,54.5,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:47:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.2,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.7,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:47:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,63.7,0,54.4,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:47:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.7,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.6,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:47:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.5,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:47:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.5,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:48:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,63.4,0,54.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:48:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.3,0,54.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:48:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,63.3,0,54.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:48:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,25.9,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.2,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:48:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,25.9,24.8,15.5,0.0,0.0,25.3,23.5,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.2,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:48:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.8,15.5,0.0,0.0,25.3,23.5,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.1,0,54.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:49:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.8,15.5,0.0,0.0,25.3,23.4,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.1,0,54.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:49:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,63.0,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:49:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,63.0,0,54.4,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:49:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.9,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:49:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.8,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:49:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.8,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:50:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.8,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:50:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,62.7,0,54.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:50:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.7,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:50:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.7,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:50:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.6,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,62.6,0,54.3,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:51:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:51:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:51:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:51:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.4,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:51:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.4,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,62.4,0,54.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:52:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.7,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,62.4,0,54.2,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:52:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,62.3,0,54.2,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:52:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,62.3,0,54.2,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:52:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,62.2,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:52:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,62.1,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:52:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,62.1,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:53:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,62.0,0,54.2,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:53:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,62.0,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:53:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.9,0,54.1,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:53:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.9,0,54.1,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:53:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,61.9,0,54.1,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:53:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,25.0,5553.7,0.0,0.0,0.0,0.0,61.8,0,54.1,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:54:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.8,0,54.1,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:54:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.7,0,54.1,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:54:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.6,0,54.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:54:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,61.5,0,54.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:54:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,61.5,0,54.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:54:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,61.4,0,54.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:55:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.8,0.0,0.0,25.4,23.1,25.2,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.3,0,54.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:55:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.8,0.0,0.0,25.4,23.1,25.2,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,61.2,0,54.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:55:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.8,0.0,0.0,25.4,23.1,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,61.2,0,54.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:55:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.1,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,61.2,0,54.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:55:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,61.1,0,54.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:55:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.1,0,54.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:56:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,61.1,0,54.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:56:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,54.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:56:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:56:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,54.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:56:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,54.0,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:56:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,54.0,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:57:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:57:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:57:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:57:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.9,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:57:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.9,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:58:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.4,25.4,15.9,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:58:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:58:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:58:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:58:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,60.7,0,53.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:58:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.4,23.0,25.3,37.0,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,25.0,5553.7,0.0,0.0,0.0,0.0,60.7,0,53.9,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:59:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.0,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,25.0,5553.7,0.0,0.0,0.0,0.0,60.7,0,53.9,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:59:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,25.0,5553.7,0.0,0.0,0.0,0.0,60.6,0,53.9,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:59:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,25.0,5553.7,0.0,0.0,0.0,0.0,60.6,0,53.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:59:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,25.0,5553.7,0.0,0.0,0.0,0.0,60.5,0,53.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:59:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.4,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 11:59:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.3,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:00:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.3,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:00:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.2,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:00:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,60.2,0,53.8,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:00:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.2,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:00:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:00:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:01:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.6,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:01:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:01:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:01:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:01:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:01:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.6,23.1,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:02:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.1,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:02:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.6,23.1,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.9,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:02:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.1,25.4,36.8,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.9,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:02:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.1,25.3,25.6,16.0,0.0,0.0,25.6,23.1,25.4,36.8,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.9,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:02:48,60.0,0.0,60.0,0.0,0.0,0.0,0.0,35.1,25.3,25.6,16.0,0.0,0.0,26.1,23.1,25.5,36.8,30.0,42.8,0.0,0.0,0.0,0.0,0.0,27,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.8,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:02:58,60.0,0.0,60.0,0.0,0.0,0.0,0.0,34.7,26.1,25.6,16.1,0.0,0.0,26.4,24.1,26.0,36.9,30.0,42.7,0.0,0.0,0.0,0.0,0.0,35,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,59.8,0,53.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:03:09,60.0,0.0,60.0,0.0,0.0,0.0,0.0,33.5,26.3,25.3,16.1,0.0,0.0,25.1,24.8,23.9,37.1,30.0,42.7,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,59.7,0,53.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:03:19,60.0,0.0,60.0,0.0,0.0,0.0,0.0,31.6,26.3,23.0,16.4,0.0,0.0,22.6,24.3,21.9,37.5,30.0,42.8,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,59.7,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:03:29,60.0,0.0,60.0,0.0,0.0,0.0,0.0,29.9,26.5,19.7,17.1,0.0,0.0,21.9,23.2,20.8,37.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,59.6,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:03:40,60.0,0.0,60.0,0.0,0.0,0.0,0.0,29.3,27.3,17.3,18.1,0.0,0.0,22.5,22.8,20.1,38.5,30.0,42.5,0.0,0.0,0.0,0.0,0.0,36,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,59.5,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:03:50,60.0,0.0,60.0,0.0,0.0,0.0,0.0,29.7,29.0,15.7,18.6,0.0,0.0,20.0,22.6,18.9,39.4,30.0,42.0,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.6,24.8,5553.7,0.0,0.0,0.0,0.0,59.5,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:04:00,60.0,0.0,60.0,0.0,0.0,0.0,0.0,31.7,31.8,14.6,18.4,0.0,0.0,18.0,22.6,17.5,40.0,30.0,41.5,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.8,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.7,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:04:10,60.0,0.0,60.0,0.0,0.0,0.0,0.0,34.8,35.4,14.0,17.8,0.0,0.0,16.7,22.9,16.4,40.5,30.0,41.1,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.7,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:04:21,60.0,0.0,60.0,0.0,0.0,0.0,0.0,38.8,39.0,13.5,16.9,0.0,0.0,15.3,23.4,15.2,40.8,30.0,40.9,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:04:31,60.0,0.0,60.0,0.0,0.0,0.0,0.0,42.4,41.9,13.0,15.9,0.0,0.0,14.5,23.9,14.3,40.9,30.0,40.8,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.4,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:04:41,60.0,0.0,60.0,0.0,0.0,0.0,0.0,44.7,43.8,12.7,14.9,0.0,0.0,14.8,24.1,13.5,41.0,30.0,40.8,0.0,0.0,0.0,0.0,0.0,38,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1665.2,1653.7,1695.2,1589.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:04:51,60.0,0.0,100.0,0.0,0.0,0.0,0.0,46.3,45.0,12.3,14.1,0.0,0.0,43.0,28.7,12.6,30.4,55.2,41.6,0.0,0.0,0.0,0.0,0.0,40,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1680.0,1666.5,1710.0,1634.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:05:02,60.0,0.0,100.0,0.0,0.0,0.0,0.0,47.4,46.1,12.0,13.5,0.0,0.0,50.8,39.7,11.5,19.4,51.0,45.1,0.0,0.0,0.0,0.0,0.0,45,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.3,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1682.8,1665.6,1713.2,1635.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:05:12,56.5,0.0,90.1,0.0,0.0,0.0,0.0,48.4,46.9,11.8,12.9,0.0,0.0,52.4,46.2,9.6,14.1,48.5,48.9,0.0,0.0,0.0,0.0,0.0,47,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.1,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1690.3,1664.9,1719.0,1641.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:05:22,55.0,0.0,78.6,0.0,0.0,0.0,0.0,49.2,47.6,11.6,12.0,0.0,0.0,53.3,48.7,7.3,10.9,49.0,51.1,0.0,0.0,0.0,0.0,0.0,46,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.2,0,52.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1694.2,1665.4,1723.5,1646.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:05:32,57.4,0.0,66.9,0.0,0.0,0.0,0.0,50.0,48.2,11.5,10.7,0.0,0.0,54.1,49.6,5.6,9.7,50.0,52.6,0.0,0.0,0.0,0.0,0.0,45,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.2,0,51.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1698.4,1666.0,1728.1,1651.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:05:43,62.3,0.0,57.0,0.0,0.0,0.0,0.0,50.8,48.6,11.4,9.3,0.0,0.0,54.9,49.7,4.3,10.3,51.9,53.8,0.0,0.0,0.0,0.0,0.0,40,0,0,0,0,0,0.0,40.9,24.8,5553.7,0.0,0.0,0.0,0.0,59.1,0,51.8,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,1698.7,1666.4,1728.3,1652.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:05:53,62.3,0.0,47.5,0.0,0.0,0.0,0.0,51.7,48.9,11.3,8.2,0.0,0.0,55.7,49.6,4.1,11.1,52.3,55.1,0.0,0.0,0.0,0.0,0.0,35,0,0,0,0,0,0.0,40.8,24.8,5553.7,0.0,0.0,0.0,0.0,59.1,0,51.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1698.7,1666.5,1728.3,1652.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:06:03,71.8,0.0,36.6,0.0,0.0,0.0,0.0,52.4,49.2,11.1,7.5,0.0,0.0,56.4,49.7,3.9,11.4,52.7,56.6,0.0,0.0,0.0,0.0,0.0,30,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,59.0,0,51.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1698.6,1666.7,1728.3,1652.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:06:13,73.8,0.0,29.3,0.0,0.0,0.0,0.0,53.0,49.4,11.0,7.2,0.0,0.0,57.2,49.8,4.1,11.5,52.3,58.0,0.0,0.0,0.0,0.0,0.0,26,0,0,0,0,0,0.0,40.8,24.8,5553.7,0.0,0.0,0.0,0.0,59.0,0,51.9,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.5,1667.0,1728.2,1652.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:06:24,73.9,0.0,23.0,0.0,0.0,0.0,0.0,53.7,49.7,10.9,7.3,0.0,0.0,58.0,50.0,4.3,11.4,52.3,59.4,0.0,0.0,0.0,0.0,0.0,22,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,58.9,0,52.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,11.0,30000,1698.4,1667.2,1728.2,1652.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:06:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,54.4,49.8,10.8,7.4,0.0,0.0,58.8,50.1,4.5,11.3,52.1,60.7,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,58.8,0,52.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,1698.2,1667.5,1728.0,1652.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:06:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,55.1,50.0,10.6,7.6,0.0,0.0,59.2,50.1,4.8,11.2,51.7,61.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,58.8,0,52.1,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.9,1667.5,1727.8,1652.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:06:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,56.0,50.2,10.5,7.6,0.0,0.0,59.2,50.2,5.0,11.0,51.3,63.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,58.7,0,52.2,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.7,1667.5,1727.6,1652.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:07:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,56.6,50.3,10.4,7.5,0.0,0.0,59.2,50.2,5.2,10.9,51.0,64.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.8,5553.7,0.0,0.0,0.0,0.0,58.7,0,52.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,11.0,30000,1697.6,1667.5,1727.4,1652.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:07:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.1,50.4,10.2,7.4,0.0,0.0,59.1,50.2,5.3,10.7,50.6,65.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.8,5553.7,0.0,0.0,0.0,0.0,58.6,0,52.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.5,1667.5,1727.3,1652.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:07:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.4,50.4,10.1,7.3,0.0,0.0,59.1,50.1,5.3,10.5,50.4,65.9,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,58.5,0,52.3,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.6,1667.5,1727.4,1652.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:07:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.7,50.5,10.0,7.2,0.0,0.0,59.2,50.1,5.2,10.4,50.4,66.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.5,0,52.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.7,1667.5,1727.6,1652.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:07:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.9,50.5,9.9,7.1,0.0,0.0,59.4,50.2,5.0,10.3,50.6,67.4,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.4,0,52.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.0,1667.6,1727.8,1652.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:07:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.1,50.6,9.9,7.1,0.0,0.0,59.6,50.3,4.9,10.3,51.0,68.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.4,0,52.4,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.2,1667.8,1728.0,1652.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:08:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.2,50.7,9.8,7.0,0.0,0.0,59.7,50.4,4.7,10.2,51.5,68.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.4,0,52.5,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.5,1667.8,1728.2,1653.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:08:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.4,50.7,9.8,7.0,0.0,0.0,59.8,50.5,4.6,10.2,51.7,69.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.9,24.8,5553.7,0.0,0.0,0.0,0.0,58.3,0,52.5,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.6,1667.8,1728.3,1653.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:08:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.5,50.8,9.8,7.0,0.0,0.0,59.9,50.6,4.7,10.2,51.9,69.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,52.6,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.8,1668.0,1728.3,1653.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:08:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.6,50.9,9.8,7.0,0.0,0.0,60.0,50.6,4.7,10.2,52.3,70.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,52.6,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.9,1668.0,1728.4,1653.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:08:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.8,50.9,9.8,7.0,0.0,0.0,60.0,50.6,4.7,10.2,52.9,70.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,52.6,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1699.1,1668.0,1728.5,1653.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:08:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.9,50.9,9.9,7.0,0.0,0.0,60.0,50.6,4.8,10.2,53.5,71.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,52.6,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1699.3,1668.0,1728.6,1653.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:09:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.9,50.9,9.9,7.1,0.0,0.0,60.0,50.5,4.8,10.3,54.0,71.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,52.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1699.4,1668.1,1728.7,1653.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:09:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.0,50.9,9.9,7.2,0.0,0.0,60.0,50.5,5.0,10.3,54.4,72.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,52.7,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,13.0,14.6,19.9,19.6,0.0,11.0,30000,1699.7,1668.1,1728.8,1654.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:09:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.1,50.9,9.9,7.2,0.0,0.0,60.1,50.5,5.1,10.3,54.6,72.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,52.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1699.9,1668.1,1728.9,1654.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:09:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.2,50.9,10.0,7.2,0.0,0.0,60.2,50.5,5.3,10.3,55.0,72.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,52.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.1,1668.3,1729.0,1654.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:09:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.2,51.0,10.0,7.2,0.0,0.0,60.3,50.5,5.3,10.3,55.4,73.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,52.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.3,1668.3,1729.1,1654.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:09:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.3,51.0,10.0,7.1,0.0,0.0,60.4,50.6,5.4,10.3,55.8,73.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.9,0,52.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.5,1668.4,1729.2,1654.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:10:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.4,51.0,10.0,7.1,0.0,0.0,60.5,50.6,5.5,10.4,56.3,73.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,52.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.6,1668.4,1729.3,1654.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:10:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.6,51.0,10.1,7.1,0.0,0.0,60.6,50.7,5.6,10.3,56.7,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,52.7,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.8,1668.4,1729.4,1655.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:10:30,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.7,51.1,10.1,7.1,0.0,0.0,60.7,50.8,5.8,9.8,57.1,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,52.8,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.0,1668.4,1729.5,1655.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:10:40,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.8,51.1,10.1,7.1,0.0,0.0,60.8,50.9,5.9,9.5,57.5,74.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,52.8,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.1,1668.4,1729.6,1655.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:10:50,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.9,51.1,10.2,7.1,0.0,0.0,60.8,50.9,6.1,9.6,58.1,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,52.8,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.2,1668.6,1729.6,1655.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:11:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.0,51.2,10.2,7.1,0.0,0.0,60.9,51.0,6.2,9.8,58.3,74.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.8,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.4,1668.6,1729.7,1655.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:11:11,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.2,51.2,10.2,7.2,0.0,0.0,61.0,51.1,6.4,9.7,58.8,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.8,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.5,1668.6,1729.8,1655.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:11:21,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.3,51.2,10.3,7.2,0.0,0.0,61.1,51.1,6.4,8.4,58.8,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.8,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,13.0,14.6,19.9,19.6,0.0,11.0,30000,1701.7,1668.8,1729.9,1655.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:11:31,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.4,51.4,10.3,7.2,0.0,0.0,61.3,51.2,6.3,7.6,59.2,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.8,1668.8,1730.0,1656.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:11:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.6,51.5,10.3,7.3,0.0,0.0,61.3,51.2,6.4,7.5,59.2,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1702.0,1668.8,1730.0,1656.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:11:52,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.7,51.6,10.3,7.3,0.0,0.0,61.5,51.5,6.4,7.4,59.4,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1702.1,1668.9,1730.1,1656.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:12:02,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.8,51.6,10.4,7.3,0.0,0.0,61.6,51.5,6.4,7.2,59.6,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1702.2,1668.9,1730.2,1656.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:12:12,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.9,51.7,10.4,7.3,0.0,0.0,61.6,51.6,6.4,7.4,59.8,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,13.0,14.6,19.9,19.6,0.0,10.9,30000,1702.3,1668.9,1730.2,1656.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:12:23,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.0,51.7,10.4,7.3,0.0,0.0,61.6,51.6,6.5,7.5,60.0,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,10.9,30000,1702.4,1668.9,1730.3,1656.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:12:33,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.1,51.7,10.4,7.3,0.0,0.0,61.7,51.7,6.5,7.5,60.2,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.4,1669.1,1730.4,1656.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:12:43,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.2,51.8,10.5,7.4,0.0,0.0,61.8,51.8,6.5,7.2,60.4,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,53.0,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1702.5,1669.1,1730.4,1656.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:12:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.3,51.8,10.5,7.4,0.0,0.0,61.9,51.8,6.5,7.1,60.6,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,53.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.6,1669.1,1730.5,1656.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:13:04,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.4,51.8,10.5,7.4,0.0,0.0,62.0,51.8,6.5,7.0,60.8,74.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,53.0,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,10.9,30000,1702.6,1669.1,1730.6,1657.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:13:14,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.5,51.9,10.5,7.4,0.0,0.0,62.0,51.9,6.5,6.9,61.0,74.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,10.9,30000,1702.7,1669.2,1730.6,1657.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:13:24,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.6,51.9,10.6,7.4,0.0,0.0,62.1,51.9,6.5,7.0,61.3,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.0,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,10.9,30000,1702.8,1669.2,1730.7,1657.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:13:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.6,51.9,10.6,7.4,0.0,0.0,62.1,52.0,6.5,7.0,61.5,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.1,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.8,1669.2,1730.8,1657.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:13:45,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.7,51.9,10.6,7.4,0.0,0.0,62.2,52.0,6.5,7.0,61.7,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.1,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.9,1669.2,1730.8,1657.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:13:55,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.8,52.0,10.6,7.5,0.0,0.0,62.3,52.1,6.6,6.9,61.7,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.9,1669.4,1730.9,1657.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:14:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.9,52.0,10.6,7.5,0.0,0.0,62.4,52.2,6.6,6.9,61.9,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.0,1669.4,1731.0,1657.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:14:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.9,52.0,10.7,7.5,0.0,0.0,62.4,52.2,6.6,6.9,62.1,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.0,1669.4,1731.0,1657.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:14:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.0,52.0,10.7,7.5,0.0,0.0,62.5,52.2,6.6,7.0,62.3,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.1,1669.4,1731.1,1658.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:14:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.1,52.1,10.7,7.5,0.0,0.0,62.6,52.3,6.6,6.9,62.5,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.3,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.1,1669.6,1731.1,1658.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:14:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.1,52.1,10.7,7.6,0.0,0.0,62.6,52.3,6.6,6.9,62.5,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.3,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.2,1669.6,1731.2,1658.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:14:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.2,52.1,10.7,7.6,0.0,0.0,62.7,52.3,6.5,6.8,62.7,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.4,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.9,30000,1703.2,1669.6,1731.2,1658.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:15:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.3,52.1,10.8,7.6,0.0,0.0,62.7,52.3,6.5,6.8,62.7,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,53.4,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.6,0.0,10.8,30000,1703.3,1669.6,1731.3,1658.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:15:17,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.3,52.2,10.8,7.6,0.0,0.0,62.8,52.4,6.5,6.8,62.9,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,53.5,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.8,14.6,19.9,19.6,0.0,10.8,30000,1703.3,1669.6,1731.4,1658.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:15:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.4,52.2,10.8,7.6,0.0,0.0,62.8,52.4,6.6,6.9,63.1,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,53.5,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.6,0.0,10.8,30000,1703.4,1669.6,1731.4,1658.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:15:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.4,52.2,10.8,7.6,0.0,0.0,62.9,52.4,6.6,6.8,63.3,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.9,0,53.5,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.4,1669.6,1731.5,1658.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:15:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.5,52.2,10.8,7.6,0.0,0.0,62.8,52.5,6.6,7.1,63.8,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.9,0,53.5,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.6,1731.5,1658.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:15:58,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.5,52.2,10.8,7.6,0.0,0.0,62.9,52.6,6.6,7.1,63.5,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,53.6,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.5,1658.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:16:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.6,52.2,10.8,7.6,0.0,0.0,63.0,52.7,6.6,7.1,63.8,75.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,53.6,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:16:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.6,52.3,10.8,7.6,0.0,0.0,62.9,52.7,6.8,7.5,64.2,75.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,53.7,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:16:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.7,52.3,10.8,7.7,0.0,0.0,63.0,52.9,6.8,7.2,64.2,75.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,39.9,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.7,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:16:39,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.7,52.3,10.9,7.7,0.0,0.0,63.1,52.9,6.7,7.0,64.2,75.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.7,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:16:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.8,52.3,10.9,7.7,0.0,0.0,63.1,52.9,6.7,7.0,64.4,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.7,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:17:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.8,52.3,10.9,7.7,0.0,0.0,63.1,53.0,6.8,6.9,64.4,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:17:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.8,52.3,10.9,7.7,0.0,0.0,63.1,53.0,6.8,6.9,64.4,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.7,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:17:20,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.7,0.0,0.0,63.2,53.1,6.7,6.9,64.4,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.7,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:17:30,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.7,0.0,0.0,63.1,53.1,6.8,7.0,64.4,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.6,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:17:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.7,0.0,0.0,63.1,53.2,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.5,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:17:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.1,53.2,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.5,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:18:01,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.1,53.3,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,53.6,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:18:11,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.2,53.4,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,53.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:18:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.2,53.4,6.8,7.0,64.8,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,53.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.8,30000,1703.6,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:18:32,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.8,0.0,0.0,63.2,53.5,6.9,7.0,64.8,74.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:18:42,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.8,0.0,0.0,63.2,53.6,6.9,7.0,64.8,74.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:18:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.8,0.0,0.0,63.3,53.6,6.9,7.0,64.6,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.6,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:19:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.9,0.0,0.0,63.3,53.7,6.9,7.0,64.6,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.6,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:19:13,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.9,0.0,0.0,63.3,53.7,6.8,7.0,64.6,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.5,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:19:23,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,10.9,7.9,0.0,0.0,63.3,53.7,6.8,7.0,64.4,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:19:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.3,53.7,6.8,7.0,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.5,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.6,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:19:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.2,53.7,6.8,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:19:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.2,53.8,6.9,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:20:04,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.3,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:20:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.3,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:20:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.4,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:20:35,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.4,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:20:45,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.4,54.0,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:20:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.8,11.0,7.9,0.0,0.0,63.4,54.0,6.8,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.6,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:21:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.8,11.0,7.9,0.0,0.0,63.4,54.1,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:21:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.8,11.0,7.9,0.0,0.0,63.4,54.1,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:21:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.8,11.0,7.9,0.0,0.0,63.5,54.1,6.9,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.6,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:21:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.8,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:21:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:21:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.5,25.1,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:22:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.4,73.4,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.3,25.3,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.7,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:22:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.8,7.1,64.6,73.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.4,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.6,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:22:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,52.9,10.9,7.9,0.0,0.0,63.4,54.3,6.9,7.1,64.6,73.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.6,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.7,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:22:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,52.9,10.9,7.9,0.0,0.0,63.4,54.3,6.9,7.2,64.6,73.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.3,25.7,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.7,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:22:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,52.9,10.9,7.9,0.0,0.0,63.5,54.4,6.9,7.2,64.8,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.6,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.8,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:22:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.4,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.4,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.8,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:23:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.4,6.9,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,58.8,0,53.8,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:23:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,58.8,0,53.8,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:23:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,58.8,0,53.9,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:23:40,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,58.9,0,53.9,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:23:50,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.8,7.1,64.4,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,58.9,0,53.9,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:24:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.0,10.9,7.9,0.0,0.0,63.5,54.5,6.9,7.2,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,58.9,0,54.0,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:24:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.2,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,58.9,0,54.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:24:21,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.6,54.6,6.9,7.2,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,59.0,0,54.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:24:31,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.6,54.6,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.6,25.1,5553.7,0.0,0.0,0.0,0.0,59.0,0,54.0,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:24:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.6,6.9,7.1,64.8,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.6,25.1,5553.7,0.0,0.0,0.0,0.0,59.0,0,54.1,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:24:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.6,6.9,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.1,0,54.2,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:25:02,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.6,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.1,0,54.2,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:25:12,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,59.1,0,54.3,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:25:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.1,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.4,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,59.2,0,54.3,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:25:33,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.6,6.8,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,59.2,0,54.3,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:25:43,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.6,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.3,0,54.3,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:25:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.6,6.8,7.2,64.6,73.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,59.3,0,54.3,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:26:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.7,6.8,7.2,64.8,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,59.3,0,54.3,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:26:14,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.7,6.9,7.2,64.8,73.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.2,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:26:24,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.8,73.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.2,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:26:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.6,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.3,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:26:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.8,54.8,6.8,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.3,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:26:55,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.8,7.9,0.0,0.0,63.8,54.8,6.8,7.1,64.4,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.1,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.4,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:27:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.3,10.8,7.9,0.0,0.0,63.9,54.8,6.8,7.0,64.4,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.1,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.4,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:27:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.3,10.8,7.8,0.0,0.0,63.9,54.8,6.8,7.0,64.2,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.5,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:27:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.3,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.2,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.5,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:27:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.4,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.6,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:27:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.4,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.6,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:27:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.8,7.1,64.6,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:28:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.8,7.1,64.6,74.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:28:17,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.8,7.1,64.6,74.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:28:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:28:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.2,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.7,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:28:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.9,7.1,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.2,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.8,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:28:58,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,64.0,55.1,6.8,7.0,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.2,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.8,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:29:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,64.0,55.1,6.8,7.0,64.4,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,25.3,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.9,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:29:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.5,10.8,7.8,0.0,0.0,64.0,55.1,6.8,7.0,64.4,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.3,5553.7,0.0,0.0,0.0,0.0,59.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:29:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.5,10.8,7.8,0.0,0.0,64.1,55.1,6.8,7.0,64.2,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:29:39,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.5,10.8,7.8,0.0,0.0,64.1,55.1,6.8,7.0,64.2,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:29:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.5,10.8,7.8,0.0,0.0,64.1,55.2,6.8,7.0,64.2,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.1,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:29:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.8,7.8,0.0,0.0,64.1,55.3,6.8,7.1,64.2,73.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.6,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:30:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.8,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.4,74.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:30:20,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.8,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.4,74.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.3,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:30:30,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.7,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.4,74.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.4,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:30:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.4,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:30:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.2,55.5,6.8,7.1,64.4,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:31:01,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.3,55.5,6.8,7.0,64.4,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.3,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.7,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:31:11,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.3,55.5,6.8,7.0,64.2,74.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:31:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.7,10.7,7.8,0.0,0.0,64.3,55.5,6.7,7.0,64.2,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,55.9,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:31:32,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.3,55.5,6.7,7.0,64.2,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.1,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:31:42,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.2,55.5,6.8,7.0,64.2,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.1,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.1,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:31:52,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.2,55.6,6.8,7.1,64.2,74.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.0,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.2,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:32:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.3,55.7,6.8,7.1,64.2,74.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.9,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:32:13,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.4,55.7,6.8,7.1,64.2,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.8,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:32:23,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.9,10.7,7.8,0.0,0.0,64.4,55.7,6.7,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.7,25.2,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.6,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:32:33,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,53.9,10.7,7.8,0.0,0.0,64.4,55.7,6.7,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.7,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,56.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:32:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,53.9,10.7,7.8,0.0,0.0,64.4,55.8,6.8,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.6,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,56.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:32:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,53.9,10.7,7.8,0.0,0.0,64.4,55.8,6.8,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.5,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,56.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.4,30000,1703.6,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:33:04,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,54.0,10.7,7.8,0.0,0.0,64.5,55.9,6.8,7.0,64.2,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:33:14,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,54.0,10.7,7.8,0.0,0.0,64.5,55.9,6.7,7.0,64.2,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:33:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.0,10.7,7.7,0.0,0.0,64.5,55.8,6.7,7.0,64.2,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.2,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:33:35,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.0,10.7,7.7,0.0,0.0,64.5,55.9,6.7,7.1,64.2,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.3,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:33:45,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.1,10.7,7.7,0.0,0.0,64.5,55.9,6.8,7.1,64.4,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.4,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:33:55,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.1,10.7,7.8,0.0,0.0,64.6,56.0,6.8,7.0,64.4,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.2,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.5,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:34:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.1,10.6,7.8,0.0,0.0,64.6,56.0,6.7,7.0,64.2,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.2,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.7,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:34:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.3,54.1,10.6,7.8,0.0,0.0,64.7,56.0,6.7,7.0,64.0,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.7,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:34:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.3,54.2,10.6,7.7,0.0,0.0,64.7,56.0,6.7,6.9,64.0,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:34:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.3,54.2,10.6,7.7,0.0,0.0,64.7,56.0,6.7,7.0,64.0,74.4,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.9,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:34:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.2,10.6,7.7,0.0,0.0,64.7,56.0,6.7,7.0,64.0,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:34:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.7,56.1,6.7,7.0,64.0,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,57.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:35:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.7,56.2,6.7,7.0,64.0,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,57.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:35:17,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.8,56.3,6.8,7.0,64.0,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,58.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:35:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.8,56.3,6.8,7.0,64.0,74.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.3,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,58.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:35:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.5,54.4,10.6,7.7,0.0,0.0,64.8,56.3,6.7,7.0,64.0,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,58.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:35:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.5,54.4,10.6,7.7,0.0,0.0,64.9,56.4,6.8,7.0,64.0,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:35:58,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.5,54.5,10.6,7.7,0.0,0.0,65.1,56.5,6.7,7.0,63.8,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:36:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.6,54.5,10.6,7.7,0.0,0.0,65.1,56.6,6.7,7.0,63.8,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.3,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.1,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:36:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.6,54.6,10.6,7.7,0.0,0.0,65.1,56.7,6.7,7.1,64.0,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.1,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:36:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.7,54.6,10.6,7.7,0.0,0.0,65.2,56.8,6.8,7.1,63.8,75.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.1,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:36:39,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.7,54.7,10.6,7.7,0.0,0.0,65.3,56.9,6.7,7.0,63.8,75.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.2,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:36:50,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.8,54.8,10.6,7.7,0.0,0.0,65.3,56.9,6.7,7.0,63.8,75.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:37:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.8,54.8,10.6,7.7,0.0,0.0,65.3,56.9,6.8,7.0,63.8,75.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.5,0,58.3,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:37:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.9,54.8,10.6,7.7,0.0,0.0,65.4,57.1,6.8,7.0,63.8,75.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,60.5,0,58.3,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:37:20,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.9,54.9,10.6,7.7,0.0,0.0,65.4,57.1,6.7,7.0,63.8,75.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,60.5,0,58.4,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:37:31,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.0,55.0,10.6,7.7,0.0,0.0,65.4,57.2,6.8,7.0,63.8,75.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.4,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:37:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.0,55.0,10.6,7.7,0.0,0.0,65.5,57.3,6.8,7.1,63.8,75.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.4,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:37:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.1,55.1,10.6,7.7,0.0,0.0,65.5,57.4,6.8,7.1,63.8,75.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.5,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:38:01,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.1,55.1,10.6,7.7,0.0,0.0,65.6,57.5,6.8,7.1,63.8,75.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.5,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:38:12,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.2,55.2,10.6,7.7,0.0,0.0,65.6,57.6,6.8,7.1,63.8,75.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.6,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:38:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.2,55.2,10.6,7.7,0.0,0.0,65.7,57.6,6.8,7.1,63.8,75.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.6,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.7,1731.7,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:38:32,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.3,55.3,10.6,7.7,0.0,0.0,65.7,57.6,6.8,7.1,64.0,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.6,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:38:42,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.3,55.4,10.5,7.7,0.0,0.0,65.8,57.7,6.8,7.1,64.0,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:38:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.4,55.4,10.5,7.8,0.0,0.0,65.9,57.8,6.8,7.1,63.8,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.7,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:39:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.5,55.5,10.5,7.8,0.0,0.0,65.9,57.8,6.8,7.1,64.0,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.7,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:39:13,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.5,55.5,10.5,7.8,0.0,0.0,65.9,57.9,6.8,7.1,64.0,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:39:24,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.6,55.6,10.5,7.8,0.0,0.0,65.9,57.9,6.8,7.1,64.0,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.8,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.1,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:39:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.6,55.6,10.5,7.8,0.0,0.0,66.0,58.0,6.8,7.1,63.8,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.8,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.0,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:39:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.6,55.7,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.1,63.8,76.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.9,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:39:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.7,55.7,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.0,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.1,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.9,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:40:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.7,55.8,10.5,7.8,0.0,0.0,66.1,58.0,6.7,7.0,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.9,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:40:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.8,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.1,63.5,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.2,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:40:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.8,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.1,63.5,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:40:35,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.9,10.5,7.8,0.0,0.0,66.2,58.1,6.7,7.0,63.3,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:40:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.9,10.5,7.7,0.0,0.0,66.2,58.1,6.7,7.0,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:40:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.2,58.2,6.7,7.1,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,59.0,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:41:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.2,58.2,6.8,7.1,63.8,76.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.8,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:41:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.2,58.2,6.8,7.1,63.5,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.1,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.8,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:41:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.3,58.2,6.8,7.0,63.5,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:41:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.8,0.0,0.0,66.3,58.2,6.7,7.0,63.5,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:41:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.2,58.2,6.7,7.0,63.8,76.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:41:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.1,58.1,6.7,7.0,63.8,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:42:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.2,58.2,6.7,7.0,63.8,76.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.1,0,58.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:42:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.3,58.3,6.7,7.0,63.8,76.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.1,0,58.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:42:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.3,58.4,6.8,7.0,63.8,76.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.1,0,58.8,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:42:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.7,0.0,0.0,66.4,58.4,6.8,7.0,63.8,76.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,58.9,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:42:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.8,0.0,0.0,66.4,58.4,6.8,7.0,64.0,76.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,58.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.1,14.5,19.9,19.6,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:42:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.8,0.0,0.0,66.4,58.5,6.8,7.1,64.0,76.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,59.0,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:43:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.8,0.0,0.0,66.4,58.5,6.8,7.0,63.8,76.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.4,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,59.0,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:43:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.2,56.3,10.5,7.8,0.0,0.0,66.5,58.5,6.8,7.0,63.5,76.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,61.3,0,59.1,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:43:30,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.2,56.3,10.5,7.8,0.0,0.0,66.5,58.5,6.7,7.0,63.3,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,61.3,0,59.2,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:43:40,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.2,56.3,10.5,7.8,0.0,0.0,66.0,58.5,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,61.3,0,59.2,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:43:50,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.1,56.4,10.5,7.7,0.0,0.0,65.9,58.4,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.1,25.1,5553.7,0.0,0.0,0.0,0.0,61.4,0,59.2,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.0,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:44:00,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.0,56.4,10.5,7.7,0.0,0.0,65.9,58.3,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.1,25.1,5553.7,0.0,0.0,0.0,0.0,61.4,0,59.2,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:44:11,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.8,56.4,10.5,7.7,0.0,0.0,65.9,58.2,6.7,6.9,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.4,0,59.3,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:44:21,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.5,10.5,7.7,0.0,0.0,65.9,58.2,6.7,6.9,64.0,76.0,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.4,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:44:31,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.5,10.5,7.7,0.0,0.0,65.9,58.2,6.7,7.0,64.0,76.0,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.4,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:44:41,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.5,10.5,7.7,0.0,0.0,65.9,58.4,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.7,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.4,0.0,0.0,0.0,0.0,0.0,39.7,0.0,5553.7,11.9,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:44:52,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.6,10.5,7.7,0.0,0.0,66.0,58.4,6.7,7.0,64.2,76.2,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.5,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.6,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:45:02,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.6,10.5,7.7,0.0,0.0,66.0,58.5,6.7,7.0,64.2,76.3,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.7,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.6,0.0,0.0,0.0,0.0,0.0,39.7,0.0,5553.7,11.9,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:45:12,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.7,10.5,7.7,0.0,0.0,66.1,58.6,6.7,7.0,64.2,76.4,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.6,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,11.9,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:45:23,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.7,10.5,7.7,0.0,0.0,66.1,58.6,6.7,7.0,64.2,76.4,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.7,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:45:33,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.7,10.5,7.7,0.0,0.0,66.2,58.7,6.7,7.0,64.2,76.4,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.5,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.8,0.0,0.0,0.0,0.0,0.0,39.5,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
2025-04-18 12:45:43,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.8,10.5,7.7,0.0,0.0,66.2,58.7,6.7,7.0,64.0,76.3,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.8,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
||||
|
BIN
modbus_registers/_modbus_register_template.xlsx
Normal file
BIN
modbus_registers/_modbus_register_template.xlsx
Normal file
Binary file not shown.
BIN
modbus_registers/heat_pump_registers.xlsx
Normal file
BIN
modbus_registers/heat_pump_registers.xlsx
Normal file
Binary file not shown.
BIN
modbus_registers/pv_inverter_registers.xlsx
Normal file
BIN
modbus_registers/pv_inverter_registers.xlsx
Normal file
Binary file not shown.
BIN
modbus_registers/shelly_pro_3m_registers.xlsx
Normal file
BIN
modbus_registers/shelly_pro_3m_registers.xlsx
Normal file
Binary file not shown.
139
pv_inverter.py
Normal file
139
pv_inverter.py
Normal file
@@ -0,0 +1,139 @@
|
||||
import time
|
||||
import struct
|
||||
import pandas as pd
|
||||
from typing import Dict, Any, List, Tuple, Optional
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
|
||||
EXCEL_PATH = "modbus_registers/pv_inverter_registers.xlsx"
|
||||
|
||||
# Obergrenze: bis EXKLUSIVE 40206 (d.h. max. 40205)
|
||||
MAX_ADDR_EXCLUSIVE = 40121
|
||||
|
||||
class PvInverter:
|
||||
def __init__(self, device_name: str, ip_address: str, port: int = 502, unit: int = 1):
|
||||
self.device_name = device_name
|
||||
self.ip = ip_address
|
||||
self.port = port
|
||||
self.unit = unit
|
||||
self.client: Optional[ModbusTcpClient] = None
|
||||
self.registers: Dict[int, Dict[str, Any]] = {} # addr -> {"desc":..., "type":...}
|
||||
self.connect_to_modbus()
|
||||
self.load_registers(EXCEL_PATH)
|
||||
|
||||
# ---------- Verbindung ----------
|
||||
def connect_to_modbus(self):
|
||||
self.client = ModbusTcpClient(self.ip, port=self.port, timeout=3.0, retries=3)
|
||||
if not self.client.connect():
|
||||
print("❌ Verbindung zu Wechselrichter fehlgeschlagen.")
|
||||
raise SystemExit(1)
|
||||
print("✅ Verbindung zu Wechselrichter hergestellt.")
|
||||
|
||||
def close(self):
|
||||
if self.client:
|
||||
self.client.close()
|
||||
self.client = None
|
||||
|
||||
# ---------- Register-Liste ----------
|
||||
def load_registers(self, excel_path: str):
|
||||
xls = pd.ExcelFile(excel_path)
|
||||
df = xls.parse()
|
||||
# Passe Spaltennamen hier an, falls nötig:
|
||||
cols = ["MB Adresse", "Beschreibung", "Variabel Typ"]
|
||||
df = df[cols].dropna()
|
||||
df["MB Adresse"] = df["MB Adresse"].astype(int)
|
||||
|
||||
# 1) Vorab-Filter: nur Adressen < 40206 übernehmen
|
||||
df = df[df["MB Adresse"] < MAX_ADDR_EXCLUSIVE]
|
||||
|
||||
self.registers = {
|
||||
int(row["MB Adresse"]): {
|
||||
"desc": str(row["Beschreibung"]).strip(),
|
||||
"type": str(row["Variabel Typ"]).strip()
|
||||
}
|
||||
for _, row in df.iterrows()
|
||||
}
|
||||
|
||||
|
||||
# ---------- Low-Level Lesen ----------
|
||||
def _try_read(self, fn_name: str, address: int, count: int) -> Optional[List[int]]:
|
||||
fn = getattr(self.client, fn_name)
|
||||
# pymodbus 3.8.x hat 'slave='; Fallbacks schaden nicht
|
||||
for kwargs in (dict(address=address, count=count, slave=self.unit),
|
||||
dict(address=address, count=count)):
|
||||
try:
|
||||
res = fn(**kwargs)
|
||||
if res is None or (hasattr(res, "isError") and res.isError()):
|
||||
continue
|
||||
return res.registers
|
||||
except TypeError:
|
||||
continue
|
||||
return None
|
||||
|
||||
def _read_any(self, address: int, count: int) -> Optional[List[int]]:
|
||||
regs = self._try_read("read_holding_registers", address, count)
|
||||
if regs is None:
|
||||
regs = self._try_read("read_input_registers", address, count)
|
||||
return regs
|
||||
|
||||
# ---------- Decoding ----------
|
||||
@staticmethod
|
||||
def _to_i16(u16: int) -> int:
|
||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
||||
|
||||
@staticmethod
|
||||
def _to_f32_from_two(u16_hi: int, u16_lo: int, msw_first: bool = True) -> float:
|
||||
b = struct.pack(">HH", u16_hi, u16_lo) if msw_first else struct.pack(">HH", u16_lo, u16_hi)
|
||||
return struct.unpack(">f", b)[0]
|
||||
|
||||
# Hilfsfunktion: wie viele 16-Bit-Register braucht dieser Typ?
|
||||
@staticmethod
|
||||
def _word_count_for_type(rtype: str) -> int:
|
||||
rt = (rtype or "").lower()
|
||||
# Passe hier an deine Excel-Typen an:
|
||||
if "uint32" in rt or "real" in rt or "float" in rt or "string(32)" in rt:
|
||||
return 2
|
||||
# Default: 1 Wort (z.B. int16/uint16)
|
||||
return 1
|
||||
|
||||
def read_one(self, address_excel: int, rtype: str) -> Optional[float]:
|
||||
"""
|
||||
Liest einen Wert nach Typ ('INT' oder 'REAL' etc.).
|
||||
Es werden ausschließlich Register < 40206 gelesen.
|
||||
"""
|
||||
addr = int(address_excel)
|
||||
words = self._word_count_for_type(rtype)
|
||||
|
||||
# 2) Harte Grenze prüfen: höchstes angefasstes Register muss < 40206 sein
|
||||
if addr + words - 1 >= MAX_ADDR_EXCLUSIVE:
|
||||
# Überspringen, da der Lesevorgang die Grenze >= 40206 berühren würde
|
||||
return None
|
||||
|
||||
if words == 2:
|
||||
regs = self._read_any(addr, 2)
|
||||
if not regs or len(regs) < 2:
|
||||
return None
|
||||
# Deine bisherige Logik interpretiert 2 Worte als Float32:
|
||||
return self._to_f32_from_two(regs[0], regs[1])
|
||||
else:
|
||||
regs = self._read_any(addr, 1)
|
||||
if not regs:
|
||||
return None
|
||||
return float(self._to_i16(regs[0]))
|
||||
|
||||
def get_state(self) -> Dict[str, Any]:
|
||||
"""
|
||||
Liest ALLE Register aus self.registers und gibt dict zurück.
|
||||
Achtet darauf, dass keine Adresse (inkl. Mehrwort) >= 40206 gelesen wird.
|
||||
"""
|
||||
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
|
||||
for address, meta in sorted(self.registers.items()):
|
||||
words = self._word_count_for_type(meta["type"])
|
||||
# 3) Nochmals Schutz auf Ebene der Iteration:
|
||||
if address + words - 1 >= MAX_ADDR_EXCLUSIVE:
|
||||
continue
|
||||
val = self.read_one(address, meta["type"])
|
||||
if val is None:
|
||||
continue
|
||||
key = f"{address} - {meta['desc']}"
|
||||
data[key] = val
|
||||
return data
|
||||
@@ -1,3 +1,5 @@
|
||||
pymodbus~=3.8.6
|
||||
pandas
|
||||
openpyxl
|
||||
openpyxl
|
||||
sshtunnel
|
||||
pvlib
|
||||
65
sg_ready_controller.py
Normal file
65
sg_ready_controller.py
Normal file
@@ -0,0 +1,65 @@
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
|
||||
class SgReadyController():
|
||||
def __init__(self, es):
|
||||
self.es = es
|
||||
|
||||
def perform_action(self, heat_pump_name, meter_name, state):
|
||||
hp = self.es.get_component_by_name(heat_pump_name)
|
||||
meter_values = state[meter_name]
|
||||
|
||||
power_to_grid = meter_values['40206 - M_AC_Power'] * 10 ** meter_values['40210 - M_AC_Power_SF']
|
||||
mode = None
|
||||
if power_to_grid > 10000:
|
||||
mode = 'mode2'
|
||||
self.switch_sg_ready_mode(hp.ip, hp.port, mode)
|
||||
elif power_to_grid < 0:
|
||||
mode = 'mode1'
|
||||
self.switch_sg_ready_mode(hp.ip, hp.port, mode)
|
||||
|
||||
return mode
|
||||
|
||||
def switch_sg_ready_mode(self, ip, port, mode):
|
||||
"""
|
||||
Register 300: 1=BUS 0= Hardware Kontakte
|
||||
Register 301 & 302:
|
||||
0-0= Kein Offset
|
||||
0-1 Boiler und Heizung Offset
|
||||
1-1 Boiler Offset + E-Einsatz Sollwert Erhöht
|
||||
1-0 SG EVU Sperre
|
||||
:param ip:
|
||||
:param mode:
|
||||
'mode1' = [True, False, False] => SG Ready deactivated
|
||||
'mode2' = [True, False, True] => SG ready activated for heatpump only
|
||||
'mode3' = [True, True, True] => SG ready activated for heatpump and heat rod
|
||||
:return:
|
||||
"""
|
||||
client = ModbusTcpClient(ip, port=port)
|
||||
if not client.connect():
|
||||
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
|
||||
return
|
||||
|
||||
mode_code = None
|
||||
if mode == 'mode1':
|
||||
mode_code = [True, False, False]
|
||||
elif mode == 'mode2':
|
||||
mode_code = [True, False, True]
|
||||
elif mode == 'mode3':
|
||||
mode_code = [True, True, True]
|
||||
else:
|
||||
print('Uncorrect or no string for mode!')
|
||||
|
||||
try:
|
||||
response_300 = client.write_coil(300, mode_code[0])
|
||||
response_301 = client.write_coil(301, mode_code[1])
|
||||
response_302 = client.write_coil(302, mode_code[2])
|
||||
|
||||
# Optional: Rückmeldungen prüfen
|
||||
for addr, resp in zip([300, 301, 302], [response_300, response_301, response_302]):
|
||||
if resp.isError():
|
||||
print(f"Fehler beim Schreiben von Coil {addr}: {resp}")
|
||||
else:
|
||||
print(f"Coil {addr} erfolgreich geschrieben.")
|
||||
|
||||
finally:
|
||||
client.close()
|
||||
64
shelly_pro_3m.py
Normal file
64
shelly_pro_3m.py
Normal file
@@ -0,0 +1,64 @@
|
||||
import struct
|
||||
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
import pandas as pd
|
||||
import time
|
||||
|
||||
class ShellyPro3m:
|
||||
def __init__(self, device_name: str, ip_address: str, port: int=502):
|
||||
self.device_name = device_name
|
||||
self.ip = ip_address
|
||||
self.port = port
|
||||
self.client = None
|
||||
self.connect_to_modbus()
|
||||
self.registers = None
|
||||
self.get_registers()
|
||||
|
||||
def connect_to_modbus(self):
|
||||
port = self.port
|
||||
self.client = ModbusTcpClient(self.ip, port=port)
|
||||
try:
|
||||
if not self.client.connect():
|
||||
print("Verbindung zum Shelly-Logger fehlgeschlagen.")
|
||||
exit(1)
|
||||
print("Verbindung zum Shelly-Logger erfolgreich.")
|
||||
except KeyboardInterrupt:
|
||||
print("Beendet durch Benutzer (Ctrl+C).")
|
||||
finally:
|
||||
self.client.close()
|
||||
|
||||
def get_registers(self):
|
||||
# Excel-Datei mit den Input-Registerinformationen
|
||||
excel_path = "modbus_registers/shelly_pro_3m_registers.xlsx"
|
||||
xls = pd.ExcelFile(excel_path)
|
||||
df_input_registers = xls.parse()
|
||||
|
||||
# Relevante Spalten bereinigen
|
||||
df_clean = df_input_registers[['MB Adresse', 'Beschreibung', 'Variabel Typ']].dropna()
|
||||
df_clean['MB Adresse'] = df_clean['MB Adresse'].astype(int)
|
||||
|
||||
# Dictionary aus Excel erzeugen
|
||||
self.registers = {
|
||||
row['MB Adresse']: {
|
||||
'desc': row['Beschreibung'],
|
||||
'type': 'REAL' if row['Variabel Typ'] == 'REAL' else 'INT'
|
||||
}
|
||||
for _, row in df_clean.iterrows()
|
||||
}
|
||||
|
||||
def get_state(self):
|
||||
data = {}
|
||||
data['Zeit'] = time.strftime('%Y-%m-%d %H:%M:%S')
|
||||
for address, info in self.registers.items():
|
||||
reg_type = info['type']
|
||||
result = self.client.read_input_registers(address, count=2 if reg_type == 'REAL' else 1)
|
||||
if result.isError():
|
||||
print(f"Fehler beim Lesen von Adresse {address}: {result}")
|
||||
continue
|
||||
|
||||
packed = struct.pack(">HH", result.registers[1], result.registers[0])
|
||||
value = round(struct.unpack(">f", packed)[0], 2)
|
||||
|
||||
print(f"Adresse {address} - {info['desc']}: {value}")
|
||||
data[f"{address} - {info['desc']}"] = value
|
||||
return data
|
||||
BIN
simulators/__pycache__/pv_plant_simulator.cpython-312.pyc
Normal file
BIN
simulators/__pycache__/pv_plant_simulator.cpython-312.pyc
Normal file
Binary file not shown.
210
simulators/pv_plant_simulator.py
Normal file
210
simulators/pv_plant_simulator.py
Normal file
@@ -0,0 +1,210 @@
|
||||
from __future__ import annotations
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional, Dict, List, Literal, Tuple, Union
|
||||
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
import pvlib
|
||||
import matplotlib.pyplot as plt
|
||||
from pvlib.location import Location
|
||||
from pvlib.pvsystem import PVSystem
|
||||
from pvlib.modelchain import ModelChain
|
||||
|
||||
SeriesOrArray = Union[pd.Series, np.ndarray]
|
||||
|
||||
# ----------------------------- Konfiguration -----------------------------
|
||||
|
||||
@dataclass
|
||||
class PvWattsSubarrayConfig:
|
||||
name: str
|
||||
pdc0_w: float # STC-DC-Leistung [W]
|
||||
tilt_deg: float # Neigung (0=horizontal)
|
||||
azimuth_deg: float # Azimut (180=Süd)
|
||||
gamma_pdc: float = -0.004 # Tempkoeff. [1/K]
|
||||
eta_inv_nom: float = 0.96 # WR-Wirkungsgrad (nominal)
|
||||
albedo: float = 0.2 # Bodenreflexion
|
||||
|
||||
# Pauschale Verluste (PVWatts-Losses)
|
||||
dc_loss: float = 0.0
|
||||
ac_loss: float = 0.0
|
||||
soiling: float = 0.0
|
||||
|
||||
# Modell
|
||||
transposition_model: Literal["perez","haydavies","isotropic","klucher","reindl"] = "perez"
|
||||
|
||||
|
||||
# ------------------------------ Subarray ---------------------------------
|
||||
|
||||
class PvWattsSubarray:
|
||||
"""
|
||||
Ein Subarray mit pvlib.ModelChain (PVWatts).
|
||||
Berechnet automatisch DNI/DHI aus GHI (ERBS-Methode)
|
||||
und nutzt ein SAPM-Temperaturmodell.
|
||||
"""
|
||||
def __init__(self, cfg: PvWattsSubarrayConfig, location: Location):
|
||||
self.cfg = cfg
|
||||
self.location = location
|
||||
self._mc: Optional[ModelChain] = None
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
def _create_modelchain(self) -> ModelChain:
|
||||
"""Erzeuge eine pvlib.ModelChain-Instanz mit PVWatts-Parametern."""
|
||||
temp_params = pvlib.temperature.TEMPERATURE_MODEL_PARAMETERS["sapm"]["open_rack_glass_polymer"]
|
||||
|
||||
system = PVSystem(
|
||||
surface_tilt=self.cfg.tilt_deg,
|
||||
surface_azimuth=self.cfg.azimuth_deg,
|
||||
module_parameters={"pdc0": self.cfg.pdc0_w, "gamma_pdc": self.cfg.gamma_pdc},
|
||||
inverter_parameters={"pdc0": self.cfg.pdc0_w, "eta_inv_nom": self.cfg.eta_inv_nom},
|
||||
albedo=self.cfg.albedo,
|
||||
temperature_model_parameters=temp_params,
|
||||
module_type="glass_polymer",
|
||||
racking_model="open_rack",
|
||||
)
|
||||
|
||||
mc = ModelChain(
|
||||
system, self.location,
|
||||
transposition_model=self.cfg.transposition_model,
|
||||
solar_position_method="nrel_numpy",
|
||||
airmass_model="kastenyoung1989",
|
||||
dc_model="pvwatts",
|
||||
ac_model="pvwatts",
|
||||
aoi_model="physical",
|
||||
spectral_model=None,
|
||||
losses_model="pvwatts",
|
||||
temperature_model="sapm",
|
||||
)
|
||||
|
||||
mc.losses_parameters = {
|
||||
"dc_loss": float(self.cfg.dc_loss),
|
||||
"ac_loss": float(self.cfg.ac_loss),
|
||||
"soiling": float(self.cfg.soiling),
|
||||
}
|
||||
|
||||
self._mc = mc
|
||||
return mc
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
def calc_dni_and_dhi(self, weather: pd.DataFrame) -> pd.DataFrame:
|
||||
"""
|
||||
Berechnet DNI & DHI aus GHI über die ERBS-Methode.
|
||||
Gibt ein neues DataFrame mit 'ghi', 'dni', 'dhi' zurück.
|
||||
"""
|
||||
if "ghi" not in weather:
|
||||
raise ValueError("Wetterdaten benötigen mindestens 'ghi'.")
|
||||
# Sonnenstand bestimmen
|
||||
sp = self.location.get_solarposition(weather.index)
|
||||
erbs = pvlib.irradiance.erbs(weather["ghi"], sp["zenith"], weather.index)
|
||||
out = weather.copy()
|
||||
out["dni"] = erbs["dni"].clip(lower=0)
|
||||
out["dhi"] = erbs["dhi"].clip(lower=0)
|
||||
return out
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
def _prepare_weather(self, weather: pd.DataFrame) -> pd.DataFrame:
|
||||
"""Sichert vollständige Spalten (ghi, dni, dhi, temp_air, wind_speed)."""
|
||||
if "ghi" not in weather or "temp_air" not in weather:
|
||||
raise ValueError("weather benötigt Spalten: 'ghi' und 'temp_air'.")
|
||||
|
||||
w = weather.copy()
|
||||
|
||||
# Zeitzone prüfen
|
||||
if w.index.tz is None:
|
||||
w.index = w.index.tz_localize(self.location.tz)
|
||||
else:
|
||||
if str(w.index.tz) != str(self.location.tz):
|
||||
w = w.tz_convert(self.location.tz)
|
||||
|
||||
# Wind default
|
||||
if "wind_speed" not in w:
|
||||
w["wind_speed"] = 1.0
|
||||
|
||||
# DNI/DHI ergänzen (immer mit ERBS)
|
||||
if "dni" not in w or "dhi" not in w:
|
||||
w = self.calc_dni_and_dhi(w)
|
||||
|
||||
return w
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
def get_power(self, weather: pd.DataFrame) -> pd.Series:
|
||||
"""
|
||||
Berechnet AC-Leistung aus Wetterdaten.
|
||||
"""
|
||||
w = self._prepare_weather(weather)
|
||||
mc = self._create_modelchain()
|
||||
mc.run_model(weather=w)
|
||||
return mc.results.ac.rename(self.cfg.name)
|
||||
|
||||
|
||||
# ------------------------------- Anlage ----------------------------------
|
||||
|
||||
class PvWattsPlant:
|
||||
"""
|
||||
Eine PV-Anlage mit mehreren Subarrays, die ein gemeinsames Wetter-DataFrame nutzt.
|
||||
"""
|
||||
def __init__(self, site: Location, subarray_cfgs: List[PvWattsSubarrayConfig]):
|
||||
self.site = site
|
||||
self.subs: Dict[str, PvWattsSubarray] = {c.name: PvWattsSubarray(c, site) for c in subarray_cfgs}
|
||||
|
||||
def get_power(
|
||||
self,
|
||||
weather: pd.DataFrame,
|
||||
*,
|
||||
return_breakdown: bool = False
|
||||
) -> pd.Series | Tuple[pd.Series, Dict[str, pd.Series]]:
|
||||
"""Berechne Gesamtleistung und optional Einzel-Subarrays."""
|
||||
parts: Dict[str, pd.Series] = {name: sub.get_power(weather) for name, sub in self.subs.items()}
|
||||
|
||||
# gemeinsamen Index bilden
|
||||
idx = list(parts.values())[0].index
|
||||
for s in parts.values():
|
||||
idx = idx.intersection(s.index)
|
||||
parts = {k: v.reindex(idx).fillna(0.0) for k, v in parts.items()}
|
||||
|
||||
total = sum(parts.values())
|
||||
total.name = "total_ac"
|
||||
|
||||
if return_breakdown:
|
||||
return total, parts
|
||||
return total
|
||||
|
||||
|
||||
# --------------------------- Beispielnutzung -----------------------------
|
||||
if __name__ == "__main__":
|
||||
# Standort
|
||||
site = Location(latitude=52.52, longitude=13.405, altitude=35, tz="Europe/Berlin", name="Berlin")
|
||||
|
||||
# Zeitachse: 1 Tag, 15-minütig
|
||||
times = pd.date_range("2025-06-21 00:00", "2025-06-21 23:45", freq="15min", tz=site.tz)
|
||||
|
||||
# Dummy-Wetter
|
||||
ghi = 1000 * np.clip(np.sin(np.linspace(0, np.pi, len(times)))**1.2, 0, None)
|
||||
temp_air = 16 + 8 * np.clip(np.sin(np.linspace(-np.pi/2, np.pi/2, len(times))), 0, None)
|
||||
wind = np.full(len(times), 1.0)
|
||||
weather = pd.DataFrame(index=times)
|
||||
weather["ghi"] = ghi
|
||||
weather["temp_air"] = temp_air
|
||||
weather["wind_speed"] = wind
|
||||
|
||||
# Zwei Subarrays
|
||||
cfgs = [
|
||||
PvWattsSubarrayConfig(name="Sued_30", pdc0_w=6000, tilt_deg=30, azimuth_deg=180, dc_loss=0.02, ac_loss=0.01),
|
||||
PvWattsSubarrayConfig(name="West_20", pdc0_w=4000, tilt_deg=20, azimuth_deg=270, soiling=0.02),
|
||||
]
|
||||
plant = PvWattsPlant(site, cfgs)
|
||||
|
||||
# Simulation
|
||||
total, parts = plant.get_power(weather, return_breakdown=True)
|
||||
|
||||
# Plot
|
||||
plt.figure(figsize=(10, 6))
|
||||
plt.plot(total.index, total / 1000, label="Gesamtleistung (AC)", linewidth=2, color="black")
|
||||
for name, s in parts.items():
|
||||
plt.plot(s.index, s / 1000, label=name)
|
||||
plt.title("PV-Leistung (PVWatts, ERBS-Methode für DNI/DHI)")
|
||||
plt.ylabel("Leistung [kW]")
|
||||
plt.xlabel("Zeit")
|
||||
plt.legend()
|
||||
plt.grid(True, linestyle="--", alpha=0.5)
|
||||
plt.tight_layout()
|
||||
plt.show()
|
||||
134
solaredge_meter.py
Normal file
134
solaredge_meter.py
Normal file
@@ -0,0 +1,134 @@
|
||||
import time
|
||||
import struct
|
||||
import pandas as pd
|
||||
from typing import Dict, Any, List, Tuple, Optional
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
|
||||
EXCEL_PATH = "modbus_registers/pv_inverter_registers.xlsx"
|
||||
|
||||
# Obergrenze: bis EXKLUSIVE 40206 (d.h. max. 40205)
|
||||
MIN_ADDR_INCLUSIVE = 40121
|
||||
ADDRESS_SHIFT = 50
|
||||
|
||||
class SolaredgeMeter:
|
||||
def __init__(self, device_name: str, ip_address: str, port: int = 502, unit: int = 1):
|
||||
self.device_name = device_name
|
||||
self.ip = ip_address
|
||||
self.port = port
|
||||
self.unit = unit
|
||||
self.client: Optional[ModbusTcpClient] = None
|
||||
self.registers: Dict[int, Dict[str, Any]] = {} # addr -> {"desc":..., "type":...}
|
||||
self.connect_to_modbus()
|
||||
self.load_registers(EXCEL_PATH)
|
||||
|
||||
# ---------- Verbindung ----------
|
||||
def connect_to_modbus(self):
|
||||
self.client = ModbusTcpClient(self.ip, port=self.port, timeout=3.0, retries=3)
|
||||
if not self.client.connect():
|
||||
print("❌ Verbindung zu Zähler fehlgeschlagen.")
|
||||
raise SystemExit(1)
|
||||
print("✅ Verbindung zu Zähler hergestellt.")
|
||||
|
||||
def close(self):
|
||||
if self.client:
|
||||
self.client.close()
|
||||
self.client = None
|
||||
|
||||
# ---------- Register-Liste ----------
|
||||
def load_registers(self, excel_path: str):
|
||||
xls = pd.ExcelFile(excel_path)
|
||||
df = xls.parse()
|
||||
# Passe Spaltennamen hier an, falls nötig:
|
||||
cols = ["MB Adresse", "Beschreibung", "Variabel Typ"]
|
||||
df = df[cols].dropna()
|
||||
df["MB Adresse"] = df["MB Adresse"].astype(int)
|
||||
|
||||
# 1) Vorab-Filter: nur Adressen < 40206 übernehmen
|
||||
df = df[df["MB Adresse"] >= MIN_ADDR_INCLUSIVE]
|
||||
|
||||
self.registers = {
|
||||
int(row["MB Adresse"]): {
|
||||
"desc": str(row["Beschreibung"]).strip(),
|
||||
"type": str(row["Variabel Typ"]).strip()
|
||||
}
|
||||
for _, row in df.iterrows()
|
||||
}
|
||||
|
||||
|
||||
# ---------- Low-Level Lesen ----------
|
||||
def _try_read(self, fn_name: str, address: int, count: int) -> Optional[List[int]]:
|
||||
fn = getattr(self.client, fn_name)
|
||||
# pymodbus 3.8.x hat 'slave='; Fallbacks schaden nicht
|
||||
shifted_addr = address + ADDRESS_SHIFT
|
||||
for kwargs in (dict(address=shifted_addr, count=count, slave=self.unit),
|
||||
dict(address=shifted_addr, count=count)):
|
||||
try:
|
||||
res = fn(**kwargs)
|
||||
if res is None or (hasattr(res, "isError") and res.isError()):
|
||||
continue
|
||||
return res.registers
|
||||
except TypeError:
|
||||
continue
|
||||
return None
|
||||
|
||||
def _read_any(self, address: int, count: int) -> Optional[List[int]]:
|
||||
regs = self._try_read("read_holding_registers", address, count)
|
||||
if regs is None:
|
||||
regs = self._try_read("read_input_registers", address, count)
|
||||
return regs
|
||||
|
||||
# ---------- Decoding ----------
|
||||
@staticmethod
|
||||
def _to_i16(u16: int) -> int:
|
||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
||||
|
||||
@staticmethod
|
||||
def _to_f32_from_two(u16_hi: int, u16_lo: int, msw_first: bool = True) -> float:
|
||||
b = struct.pack(">HH", u16_hi, u16_lo) if msw_first else struct.pack(">HH", u16_lo, u16_hi)
|
||||
return struct.unpack(">f", b)[0]
|
||||
|
||||
# Hilfsfunktion: wie viele 16-Bit-Register braucht dieser Typ?
|
||||
@staticmethod
|
||||
def _word_count_for_type(rtype: str) -> int:
|
||||
rt = (rtype or "").lower()
|
||||
# Passe hier an deine Excel-Typen an:
|
||||
if "uint32" in rt or "real" in rt or "float" in rt or "string(32)" in rt:
|
||||
return 2
|
||||
# Default: 1 Wort (z.B. int16/uint16)
|
||||
return 1
|
||||
|
||||
def read_one(self, address_excel: int, rtype: str) -> Optional[float]:
|
||||
"""
|
||||
Liest einen Wert nach Typ ('INT' oder 'REAL' etc.).
|
||||
Es werden ausschließlich Register < 40206 gelesen.
|
||||
"""
|
||||
addr = int(address_excel)
|
||||
words = self._word_count_for_type(rtype)
|
||||
|
||||
if words == 2:
|
||||
regs = self._read_any(addr, 2)
|
||||
if not regs or len(regs) < 2:
|
||||
return None
|
||||
# Deine bisherige Logik interpretiert 2 Worte als Float32:
|
||||
return self._to_f32_from_two(regs[0], regs[1])
|
||||
else:
|
||||
regs = self._read_any(addr, 1)
|
||||
if not regs:
|
||||
return None
|
||||
return float(self._to_i16(regs[0]))
|
||||
|
||||
def get_state(self) -> Dict[str, Any]:
|
||||
"""
|
||||
Liest ALLE Register aus self.registers und gibt dict zurück.
|
||||
Achtet darauf, dass keine Adresse (inkl. Mehrwort) >= 40206 gelesen wird.
|
||||
"""
|
||||
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
|
||||
for address, meta in sorted(self.registers.items()):
|
||||
words = self._word_count_for_type(meta["type"])
|
||||
|
||||
val = self.read_one(address, meta["type"])
|
||||
if val is None:
|
||||
continue
|
||||
key = f"{address} - {meta['desc']}"
|
||||
data[key] = val
|
||||
return data
|
||||
52886
terminal_log
52886
terminal_log
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user