Compare commits
12 Commits
implement_
...
load_forec
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13f27e12e8 | ||
|
|
ba6ff9f6c3 | ||
|
|
9ccb1e042b | ||
|
|
a5bcfca39a | ||
|
|
a1f9e29134 | ||
|
|
98302b9af5 | ||
|
|
f3de1f9280 | ||
|
|
ecd0180483 | ||
|
|
1784b7c283 | ||
|
|
b066658eb0 | ||
|
|
0bcf8a2d8c | ||
|
|
397935f51a |
@@ -1,31 +0,0 @@
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
|
||||
def write_coils(ip):
|
||||
# IP und Port der Wärmepumpe
|
||||
port = 502
|
||||
client = ModbusTcpClient(ip, port=port)
|
||||
|
||||
if not client.connect():
|
||||
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
|
||||
return
|
||||
|
||||
try:
|
||||
# Coil 300 = Kommunikation über Bus aktivieren (1)
|
||||
response_300 = client.write_coil(300, True)
|
||||
# Coil 301 = SG Ready Stufe 1 aktivieren (1)
|
||||
response_301 = client.write_coil(301, False)
|
||||
# Coil 302 = SG Ready Stufe 2 deaktivieren (0)
|
||||
response_302 = client.write_coil(302, False)
|
||||
|
||||
# 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()
|
||||
|
||||
# Testaufruf mit IP-Adresse deiner Wärmepumpe
|
||||
write_coils("10.0.0.10") # <-- IP-Adresse hier anpassen
|
||||
Binary file not shown.
BIN
__pycache__/energysystem.cpython-312.pyc
Normal file
BIN
__pycache__/energysystem.cpython-312.pyc
Normal file
Binary file not shown.
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__/solaredge_meter.cpython-312.pyc
Normal file
BIN
__pycache__/solaredge_meter.cpython-312.pyc
Normal file
Binary file not shown.
@@ -1,5 +1,7 @@
|
||||
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):
|
||||
@@ -25,4 +27,22 @@ class DataBaseInflux:
|
||||
# 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)
|
||||
|
||||
|
||||
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.
349
forecaster/load_forecaster.py
Normal file
349
forecaster/load_forecaster.py
Normal file
@@ -0,0 +1,349 @@
|
||||
# load_forecaster.py
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
LoadForecaster: builds a 36-hour forecast at 15-min resolution from InfluxDB data.
|
||||
|
||||
- Data source: InfluxDB (Flux query provided by user)
|
||||
- Target: House load = M_AC_real - I_AC_real
|
||||
- Frequency: 15 minutes (changeable via init)
|
||||
- Model: Keras (LSTM by default, pluggable)
|
||||
- Persistence: Saves model (H5) and scaler (joblib)
|
||||
|
||||
Usage (example):
|
||||
|
||||
from load_forecaster import LoadForecaster
|
||||
import tensorflow as tf
|
||||
|
||||
lf = LoadForecaster(
|
||||
url="http://localhost:8086",
|
||||
token="<YOUR_TOKEN>",
|
||||
org="<YOUR_ORG>",
|
||||
bucket="allmende_db",
|
||||
agg_every="15m",
|
||||
input_hours=72,
|
||||
output_hours=36,
|
||||
model_path="model/load_forecaster.h5",
|
||||
scaler_path="model/scaler.joblib",
|
||||
)
|
||||
|
||||
# Train or retrain
|
||||
lf.train_and_save(train_days=90, epochs=60)
|
||||
|
||||
# Load model and forecast
|
||||
model = lf.load_model()
|
||||
forecast_df = lf.get_15min_forecast(model)
|
||||
print(forecast_df.head())
|
||||
|
||||
"""
|
||||
from __future__ import annotations
|
||||
import os
|
||||
import math
|
||||
import json
|
||||
import warnings
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional, Tuple
|
||||
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
from influxdb_client import InfluxDBClient
|
||||
from influxdb_client.client.warnings import MissingPivotFunction
|
||||
from sklearn.preprocessing import StandardScaler
|
||||
from sklearn.exceptions import NotFittedError
|
||||
import joblib
|
||||
|
||||
# TensorFlow / Keras
|
||||
import tensorflow as tf
|
||||
from tensorflow.keras.models import Sequential, load_model
|
||||
from tensorflow.keras.layers import LSTM, Dense, Dropout
|
||||
from tensorflow.keras.callbacks import EarlyStopping
|
||||
|
||||
warnings.filterwarnings("ignore", category=MissingPivotFunction)
|
||||
|
||||
@dataclass
|
||||
class InfluxParams:
|
||||
url: str
|
||||
token: str
|
||||
org: str
|
||||
bucket: str = "allmende_db"
|
||||
|
||||
class LoadForecaster:
|
||||
def __init__(
|
||||
self,
|
||||
url: str,
|
||||
token: str,
|
||||
org: str,
|
||||
bucket: str = "allmende_db",
|
||||
agg_every: str = "15m",
|
||||
input_hours: int = 72,
|
||||
output_hours: int = 36,
|
||||
model_path: str = "model/load_forecaster.h5",
|
||||
scaler_path: str = "model/scaler.joblib",
|
||||
feature_config: Optional[dict] = None,
|
||||
) -> None:
|
||||
self.influx = InfluxParams(url=url, token=token, org=org, bucket=bucket)
|
||||
self.agg_every = agg_every
|
||||
self.input_steps = int((input_hours * 60) / self._freq_minutes(agg_every))
|
||||
self.output_steps = int((output_hours * 60) / self._freq_minutes(agg_every))
|
||||
self.model_path = model_path
|
||||
self.scaler_path = scaler_path
|
||||
self.feature_config = feature_config or {"use_temp": True, "use_time_cyc": True}
|
||||
self._scaler: Optional[StandardScaler] = None
|
||||
|
||||
# Ensure model dir exists
|
||||
os.makedirs(os.path.dirname(model_path), exist_ok=True)
|
||||
|
||||
# ---------------------------- Public API ---------------------------- #
|
||||
def get_15min_forecast(self, model: tf.keras.Model) -> pd.DataFrame:
|
||||
"""Create a 36-hour forecast at 15-min resolution using the latest data.
|
||||
Assumes a StandardScaler has been fitted during training and saved.
|
||||
The method uses the most recent input window from InfluxDB.
|
||||
"""
|
||||
# Pull just enough history for one input window
|
||||
history_hours = math.ceil(self.input_steps * self._freq_minutes(self.agg_every) / 60)
|
||||
df = self._query_and_prepare(range_hours=history_hours)
|
||||
if len(df) < self.input_steps:
|
||||
raise RuntimeError(f"Not enough data: need {self.input_steps} steps, got {len(df)}")
|
||||
|
||||
# Build features for the latest window
|
||||
feats = self._build_features(df)
|
||||
X_window = feats[-self.input_steps :]
|
||||
|
||||
# Load scaler
|
||||
scaler = self._load_or_get_scaler()
|
||||
X_scaled = scaler.transform(X_window)
|
||||
|
||||
# Predict
|
||||
pred_scaled = model.predict(X_scaled[np.newaxis, ...], verbose=0)[0]
|
||||
|
||||
# Inverse transform only the target column (index 0 is Load)
|
||||
# Reconstruct a full array to inverse_transform
|
||||
inv = np.zeros((self.output_steps, X_scaled.shape[1]))
|
||||
inv[:, 0] = pred_scaled
|
||||
inv_full = scaler.inverse_transform(inv)
|
||||
y_pred = inv_full[:, 0]
|
||||
|
||||
# Build forecast index
|
||||
last_ts = df.index[-1]
|
||||
freq = pd.tseries.frequencies.to_offset(self.agg_every)
|
||||
idx = pd.date_range(last_ts + freq, periods=self.output_steps, freq=freq)
|
||||
out = pd.DataFrame({"Forecast_Load": y_pred}, index=idx)
|
||||
out.index.name = "timestamp"
|
||||
return out
|
||||
|
||||
def train_and_save(
|
||||
self,
|
||||
train_days: int = 90,
|
||||
epochs: int = 80,
|
||||
batch_size: int = 128,
|
||||
validation_split: float = 0.2,
|
||||
learning_rate: float = 1e-3,
|
||||
fine_tune: bool = False,
|
||||
) -> tf.keras.Model:
|
||||
"""Train (or fine-tune) a model from recent history and persist model + scaler."""
|
||||
df = self._query_and_prepare(range_hours=24 * train_days)
|
||||
feats = self._build_features(df)
|
||||
|
||||
# Prepare windows
|
||||
X, y = self._make_windows(feats)
|
||||
if len(X) < 10:
|
||||
raise RuntimeError("Not enough windowed samples to train.")
|
||||
|
||||
# Fit scaler on full X
|
||||
scaler = StandardScaler()
|
||||
X_scaled = scaler.fit_transform(X)
|
||||
self._scaler = scaler
|
||||
joblib.dump(scaler, self.scaler_path)
|
||||
|
||||
# Build model (or load existing for fine-tune)
|
||||
if fine_tune and os.path.exists(self.model_path):
|
||||
model = load_model(self.model_path)
|
||||
else:
|
||||
model = self._build_default_model(input_dim=X.shape[1], output_dim=self.output_steps, lr=learning_rate)
|
||||
|
||||
# Train
|
||||
es = EarlyStopping(monitor="val_loss", patience=10, restore_best_weights=True)
|
||||
model.fit(
|
||||
X_scaled.reshape((-1, self.input_steps, X.shape[1] // self.input_steps)),
|
||||
y,
|
||||
epochs=epochs,
|
||||
batch_size=batch_size,
|
||||
validation_split=validation_split,
|
||||
callbacks=[es],
|
||||
verbose=1,
|
||||
)
|
||||
|
||||
model.save(self.model_path)
|
||||
return model
|
||||
|
||||
# A convenience wrapper to be called from an external script once per day
|
||||
def retrain_daily(self, train_days: int = 90, epochs: int = 40, fine_tune: bool = True) -> None:
|
||||
self.train_and_save(train_days=train_days, epochs=epochs, fine_tune=fine_tune)
|
||||
|
||||
def load_model(self) -> tf.keras.Model:
|
||||
if not os.path.exists(self.model_path):
|
||||
raise FileNotFoundError(f"Model not found at {self.model_path}")
|
||||
return load_model(self.model_path)
|
||||
|
||||
# ------------------------- Internals: Data ------------------------- #
|
||||
def _query_and_prepare(self, range_hours: int) -> pd.DataFrame:
|
||||
"""Query InfluxDB for the last `range_hours` and construct the Load series.
|
||||
Expected fields (exactly as in DB):
|
||||
- "40206 - M_AC_Power"
|
||||
- "40210 - M_AC_Power_SF"
|
||||
- "40083 - I_AC_Power"
|
||||
- "40084 - I_AC_Power_SF"
|
||||
- "300 - Aussentemperatur"
|
||||
"""
|
||||
start_str = f"-{range_hours}h"
|
||||
flux = f'''
|
||||
from(bucket: "{self.influx.bucket}")
|
||||
|> range(start: {start_str})
|
||||
|> filter(fn: (r) => r["_measurement"] == "solaredge_meter" or r["_measurement"] == "solaredge_master" or r["_measurement"] == "hp_master")
|
||||
|> filter(fn: (r) => r["_field"] == "40206 - M_AC_Power" or r["_field"] == "40210 - M_AC_Power_SF" or r["_field"] == "40083 - I_AC_Power" or r["_field"] == "40084 - I_AC_Power_SF" or r["_field"] == "300 - Aussentemperatur")
|
||||
|> aggregateWindow(every: {self.agg_every}, fn: mean, createEmpty: false)
|
||||
|> yield(name: "mean")
|
||||
'''
|
||||
with InfluxDBClient(url=self.influx.url, token=self.influx.token, org=self.influx.org) as client:
|
||||
tables = client.query_api().query_data_frame(flux)
|
||||
|
||||
# Concatenate if list of frames is returned
|
||||
if isinstance(tables, list):
|
||||
df = pd.concat(tables, ignore_index=True)
|
||||
else:
|
||||
df = tables
|
||||
|
||||
# Keep relevant columns and pivot
|
||||
df = df[["_time", "_field", "_value"]]
|
||||
df = df.pivot(index="_time", columns="_field", values="_value").reset_index()
|
||||
df = df.rename(
|
||||
columns={
|
||||
"_time": "timestamp",
|
||||
"40206 - M_AC_Power": "M_AC",
|
||||
"40210 - M_AC_Power_SF": "M_SF",
|
||||
"40083 - I_AC_Power": "I_AC",
|
||||
"40084 - I_AC_Power_SF": "I_SF",
|
||||
"300 - Aussentemperatur": "Temp",
|
||||
}
|
||||
)
|
||||
df = df.sort_values("timestamp").set_index("timestamp")
|
||||
|
||||
# Forward-fill reasonable gaps (e.g., scaler factors and temp)
|
||||
df[["M_SF", "I_SF", "Temp"]] = df[["M_SF", "I_SF", "Temp"]].ffill()
|
||||
|
||||
# Apply scaling: real = value * 10^sf
|
||||
df["I_AC_real"] = df["I_AC"] * np.power(10.0, df["I_SF"]).astype(float)
|
||||
df["M_AC_real"] = df["M_AC"] * np.power(10.0, df["M_SF"]).astype(float)
|
||||
|
||||
# Compute load
|
||||
df["Load"] = df["M_AC_real"] - df["I_AC_real"]
|
||||
|
||||
# Ensure regular 15-min grid
|
||||
df = df.asfreq(self.agg_every)
|
||||
df[["Load", "Temp"]] = df[["Load", "Temp"]].interpolate(limit_direction="both")
|
||||
|
||||
return df[["Load", "Temp"]]
|
||||
|
||||
def _build_features(self, df: pd.DataFrame) -> np.ndarray:
|
||||
"""Create feature matrix: [Load, Temp?, sin/cos day, sin/cos dow]."""
|
||||
feats = [df["Load"].values.reshape(-1, 1)]
|
||||
|
||||
if self.feature_config.get("use_temp", True):
|
||||
feats.append(df["Temp"].values.reshape(-1, 1))
|
||||
|
||||
if self.feature_config.get("use_time_cyc", True):
|
||||
idx = df.index
|
||||
minute_of_day = (idx.hour * 60 + idx.minute).values.astype(float)
|
||||
sod = 2 * np.pi * minute_of_day / (24 * 60)
|
||||
dow = 2 * np.pi * idx.dayofweek.values.astype(float) / 7.0
|
||||
feats.append(np.sin(sod).reshape(-1, 1))
|
||||
feats.append(np.cos(sod).reshape(-1, 1))
|
||||
feats.append(np.sin(dow).reshape(-1, 1))
|
||||
feats.append(np.cos(dow).reshape(-1, 1))
|
||||
|
||||
X = np.hstack(feats) # shape: (T, n_features)
|
||||
|
||||
# Flatten windows to 2D for scaler fitting, but model expects 3D; we reshape later
|
||||
return X
|
||||
|
||||
def _make_windows(self, X_2d: np.ndarray) -> Tuple[np.ndarray, np.ndarray]:
|
||||
"""Create sliding windows: returns (X_flat, y) where X_flat stacks the windowed features.
|
||||
For Keras we later reshape X_flat -> (N, input_steps, n_features).
|
||||
"""
|
||||
n = X_2d.shape[0]
|
||||
n_features = X_2d.shape[1]
|
||||
X_list, y_list = [], []
|
||||
for i in range(n - self.input_steps - self.output_steps):
|
||||
xw = X_2d[i : i + self.input_steps, :]
|
||||
yw = X_2d[i + self.input_steps : i + self.input_steps + self.output_steps, 0] # target: Load
|
||||
X_list.append(xw.reshape(-1)) # flatten
|
||||
y_list.append(yw)
|
||||
X_flat = np.stack(X_list)
|
||||
y = np.stack(y_list)
|
||||
return X_flat, y
|
||||
|
||||
# ----------------------- Internals: Modeling ----------------------- #
|
||||
def _build_default_model(self, input_dim: int, output_dim: int, lr: float = 1e-3) -> tf.keras.Model:
|
||||
n_features = input_dim // self.input_steps
|
||||
model = Sequential([
|
||||
LSTM(96, input_shape=(self.input_steps, n_features), return_sequences=False),
|
||||
Dropout(0.1),
|
||||
Dense(output_dim)
|
||||
])
|
||||
model.compile(optimizer=tf.keras.optimizers.Adam(learning_rate=lr), loss="mse")
|
||||
return model
|
||||
|
||||
def _load_or_get_scaler(self) -> StandardScaler:
|
||||
if self._scaler is not None:
|
||||
return self._scaler
|
||||
if not os.path.exists(self.scaler_path):
|
||||
raise NotFittedError("Scaler not found. Train the model first to create scaler.")
|
||||
self._scaler = joblib.load(self.scaler_path)
|
||||
return self._scaler
|
||||
|
||||
@staticmethod
|
||||
def _freq_minutes(spec: str) -> int:
|
||||
# supports formats like "15m", "1h"
|
||||
if spec.endswith("m"):
|
||||
return int(spec[:-1])
|
||||
if spec.endswith("h"):
|
||||
return int(spec[:-1]) * 60
|
||||
raise ValueError(f"Unsupported frequency spec: {spec}")
|
||||
|
||||
|
||||
# ----------------------------- retrain_daily.py -----------------------------
|
||||
# A tiny script you can run once per day (e.g., via cron/systemd) to retrain the model.
|
||||
# It delegates the work to LoadForecaster.retrain_daily().
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Read credentials/config from env vars or fill here
|
||||
URL = os.getenv("INFLUX_URL", "http://localhost:8086")
|
||||
TOKEN = os.getenv("INFLUX_TOKEN", "<YOUR_TOKEN>")
|
||||
ORG = os.getenv("INFLUX_ORG", "<YOUR_ORG>")
|
||||
BUCKET = os.getenv("INFLUX_BUCKET", "allmende_db")
|
||||
|
||||
lf = LoadForecaster(
|
||||
url=URL,
|
||||
token=TOKEN,
|
||||
org=ORG,
|
||||
bucket=BUCKET,
|
||||
agg_every="15m",
|
||||
input_hours=72,
|
||||
output_hours=36,
|
||||
model_path=os.getenv("FORECASTER_MODEL", "model/load_forecaster.h5"),
|
||||
scaler_path=os.getenv("FORECASTER_SCALER", "model/scaler.joblib"),
|
||||
)
|
||||
|
||||
# One call per day is enough; decrease epochs for faster daily updates
|
||||
lf.retrain_daily(train_days=int(os.getenv("TRAIN_DAYS", "120")), epochs=int(os.getenv("EPOCHS", "30")), fine_tune=True)
|
||||
|
||||
# Optionally, produce a fresh forecast right after training
|
||||
try:
|
||||
model = lf.load_model()
|
||||
fc = lf.get_15min_forecast(model)
|
||||
# Save latest forecast to CSV for dashboards/consumers
|
||||
out_path = os.getenv("FORECAST_OUT", "model/latest_forecast_15min.csv")
|
||||
os.makedirs(os.path.dirname(out_path), exist_ok=True)
|
||||
fc.to_csv(out_path)
|
||||
print(f"Saved forecast: {out_path}")
|
||||
except Exception as e:
|
||||
print(f"Forecast generation failed: {e}")
|
||||
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()
|
||||
61
main.py
61
main.py
@@ -1,15 +1,24 @@
|
||||
import time
|
||||
from datetime import datetime
|
||||
from data_base_influx import DataBaseInflux
|
||||
from forecaster.weather_forecaster import WeatherForecaster
|
||||
from heat_pump import HeatPump
|
||||
from pv_inverter import PvInverter
|
||||
from simulators.pv_plant_simulator import PvWattsSubarrayConfig, PvWattsPlant
|
||||
from solaredge_meter import SolaredgeMeter
|
||||
from shelly_pro_3m import ShellyPro3m
|
||||
from energysystem import EnergySystem
|
||||
from sg_ready_controller import SgReadyController
|
||||
from pvlib.location import Location
|
||||
import datetime as dt
|
||||
|
||||
# For dev-System run in terminal: ssh -N -L 127.0.0.1:8111:10.0.0.10:502 pi@192.168.1.146
|
||||
# For productive-System change IP-adress in heatpump to '10.0.0.10' and port to 502
|
||||
|
||||
interval_seconds = 10
|
||||
|
||||
es = EnergySystem()
|
||||
|
||||
db = DataBaseInflux(
|
||||
url="http://192.168.1.146:8086",
|
||||
token="Cw_naEZyvJ3isiAh1P4Eq3TsjcHmzzDFS7SlbKDsS6ZWL04fMEYixWqtNxGThDdG27S9aW5g7FP9eiq5z1rsGA==",
|
||||
@@ -17,19 +26,57 @@ db = DataBaseInflux(
|
||||
bucket="allmende_db"
|
||||
)
|
||||
|
||||
hp = HeatPump(device_name='hp_master', ip_address='10.0.0.10', port=502)
|
||||
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='wr_master', ip_address='192.168.1.112')
|
||||
wr = PvInverter(device_name='solaredge_master', ip_address='192.168.1.112')
|
||||
meter = SolaredgeMeter(device_name='solaredge_meter', ip_address='192.168.1.112')
|
||||
|
||||
#controller = SgReadyController(hp, wr)
|
||||
es.add_components(hp_master, hp_slave, shelly, wr, meter)
|
||||
controller = SgReadyController(es)
|
||||
|
||||
# FORECASTING
|
||||
latitude = 48.041
|
||||
longitude = 7.862
|
||||
TZ = "Europe/Berlin"
|
||||
HORIZON_DAYS = 2
|
||||
weather_forecaster = WeatherForecaster(latitude=latitude, longitude=longitude)
|
||||
site = Location(latitude=latitude, longitude=longitude, altitude=35, tz=TZ, name="Gundelfingen")
|
||||
|
||||
p_module = 435
|
||||
upper_roof_north = PvWattsSubarrayConfig(name="north", pdc0_w=(29+29+21)*p_module, tilt_deg=10, azimuth_deg=20, dc_loss=0.02, ac_loss=0.01)
|
||||
upper_roof_south = PvWattsSubarrayConfig(name="south", pdc0_w=(29+21+20)*p_module, tilt_deg=10, azimuth_deg=200, dc_loss=0.02, ac_loss=0.01)
|
||||
upper_roof_east = PvWattsSubarrayConfig(name="east", pdc0_w=7*p_module, tilt_deg=10, azimuth_deg=110, dc_loss=0.02, ac_loss=0.01)
|
||||
upper_roof_west = PvWattsSubarrayConfig(name="west", pdc0_w=7*p_module, tilt_deg=10, azimuth_deg=290, dc_loss=0.02, ac_loss=0.01)
|
||||
cfgs = [upper_roof_north, upper_roof_south, upper_roof_east, upper_roof_west]
|
||||
pv_plant = PvWattsPlant(site, cfgs)
|
||||
|
||||
now = datetime.now()
|
||||
next_forecast_at = (now + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
|
||||
while True:
|
||||
now = datetime.now()
|
||||
if now.second % interval_seconds == 0 and now.microsecond < 100_000:
|
||||
db.store_data(hp.device_name, hp.get_state())
|
||||
db.store_data(shelly.device_name, shelly.get_state())
|
||||
db.store_data(wr.device_name, wr.get_state())
|
||||
#controller.perform_action()
|
||||
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})
|
||||
|
||||
if now >= next_forecast_at:
|
||||
# Start der Prognose: ab der kommenden vollen Stunde
|
||||
start_hour_local = (now + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
|
||||
weather = weather_forecaster.get_hourly_forecast(start_hour_local, HORIZON_DAYS)
|
||||
total = pv_plant.get_power(weather)
|
||||
db.store_forecasts('pv_forecast', total)
|
||||
|
||||
# Nächste geplante Ausführung definieren (immer volle Stunde)
|
||||
# Falls wir durch Delay mehrere Stunden verpasst haben, hole auf:
|
||||
while next_forecast_at <= now:
|
||||
next_forecast_at = (next_forecast_at + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
|
||||
|
||||
|
||||
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
|
||||
|
41
plot_data.py
41
plot_data.py
@@ -1,41 +0,0 @@
|
||||
# Neu laden nach Code-Reset
|
||||
import pandas as pd
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
# Pfad zur neu hochgeladenen Datei
|
||||
file_path = "modbus_log.csv"
|
||||
df_new = pd.read_csv(file_path)
|
||||
|
||||
# Zeitstempel in datetime konvertieren
|
||||
df_new['Zeit'] = pd.to_datetime(df_new['Zeit'])
|
||||
|
||||
# Spaltenbezeichnungen für den Plot
|
||||
registers = [
|
||||
'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)',
|
||||
'50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur',
|
||||
'70 - Vorlauftemperatur Mischerkreis 1',
|
||||
'150 - Trinkwarmwasserspiecher oben (Ein)',
|
||||
'153 - Trinkwarmwasserspiecher unten (Aus)'
|
||||
]
|
||||
all_registers = ['300 - Aussentemperatur'] + registers
|
||||
|
||||
# Plot erzeugen
|
||||
plt.figure(figsize=(14, 8))
|
||||
|
||||
for reg in all_registers:
|
||||
plt.plot(df_new['Zeit'], df_new[reg], label=reg)
|
||||
|
||||
plt.title("Temperaturverläufe inkl. Außentemperatur (neue Daten)")
|
||||
plt.xlabel("Zeit")
|
||||
plt.ylabel("Temperatur (°C)")
|
||||
plt.grid(True)
|
||||
plt.tight_layout()
|
||||
|
||||
# Legende außerhalb des Plots platzieren
|
||||
plt.legend(loc='center left', bbox_to_anchor=(1.0, 0.5))
|
||||
plt.subplots_adjust(right=0.75)
|
||||
|
||||
plt.show()
|
||||
@@ -1,13 +1,14 @@
|
||||
import time
|
||||
import struct
|
||||
import pandas as pd
|
||||
import matplotlib.pyplot as plt
|
||||
from collections import deque
|
||||
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
|
||||
@@ -36,33 +37,29 @@ class PvInverter:
|
||||
def load_registers(self, excel_path: str):
|
||||
xls = pd.ExcelFile(excel_path)
|
||||
df = xls.parse()
|
||||
# Passen die Spaltennamen bei dir anders, bitte hier anpassen:
|
||||
# Passe Spaltennamen hier an, falls nötig:
|
||||
cols = ["MB Adresse", "Beschreibung", "Variabel Typ"]
|
||||
for c in cols:
|
||||
if c not in df.columns:
|
||||
raise ValueError(f"Spalte '{c}' fehlt in {excel_path}")
|
||||
df = df[cols].dropna()
|
||||
df["MB Adresse"] = df["MB Adresse"].astype(int)
|
||||
# NORMALISIERE TYP
|
||||
def norm_type(x: Any) -> str:
|
||||
s = str(x).strip().upper()
|
||||
return "REAL" if s == "REAL" else "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": norm_type(row["Variabel Typ"])
|
||||
"type": str(row["Variabel Typ"]).strip()
|
||||
}
|
||||
for _, row in df.iterrows()
|
||||
}
|
||||
print(f"ℹ️ {len(self.registers)} Register aus Excel geladen.")
|
||||
|
||||
|
||||
# ---------- 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),
|
||||
):
|
||||
dict(address=address, count=count)):
|
||||
try:
|
||||
res = fn(**kwargs)
|
||||
if res is None or (hasattr(res, "isError") and res.isError()):
|
||||
@@ -85,30 +82,55 @@ class PvInverter:
|
||||
|
||||
@staticmethod
|
||||
def _to_f32_from_two(u16_hi: int, u16_lo: int, msw_first: bool = True) -> float:
|
||||
if msw_first:
|
||||
b = struct.pack(">HH", u16_hi, u16_lo)
|
||||
else:
|
||||
b = struct.pack(">HH", u16_lo, u16_hi)
|
||||
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') unter Berücksichtigung Base-1."""
|
||||
addr = address_excel
|
||||
if rtype == "REAL":
|
||||
"""
|
||||
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: # INT
|
||||
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."""
|
||||
"""
|
||||
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 self.registers.items():
|
||||
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
|
||||
|
||||
@@ -2,3 +2,4 @@ pymodbus~=3.8.6
|
||||
pandas
|
||||
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()
|
||||
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
|
||||
507
terminal_log
507
terminal_log
@@ -1,507 +0,0 @@
|
||||
nohup: ignoring input
|
||||
Verbindung zur Wärmepumpe erfolgreich.
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.5
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 66.0
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.4
|
||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.6
|
||||
Adresse 24 - Heisgastemperatur: 75.7
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.4
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.2
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 35.4
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.5
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1660.0
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
||||
Adresse 510 - Störung 1 Nummer: 0
|
||||
Adresse 512 - Störung 2 Nummer: 0
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.5
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 66.0
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.5
|
||||
Adresse 22 - Verdampfunstemperatur: 7.0
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.6
|
||||
Adresse 24 - Heisgastemperatur: 75.7
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.3
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.2
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 35.3
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.5
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1660.0
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
||||
Adresse 510 - Störung 1 Nummer: 0
|
||||
Adresse 512 - Störung 2 Nummer: 0
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.5
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 66.0
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.5
|
||||
Adresse 22 - Verdampfunstemperatur: 7.0
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.6
|
||||
Adresse 24 - Heisgastemperatur: 75.8
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.5
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.2
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.8
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 35.5
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.5
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1660.0
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
||||
Adresse 510 - Störung 1 Nummer: 0
|
||||
Adresse 512 - Störung 2 Nummer: 0
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.5
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 65.8
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.3
|
||||
Adresse 22 - Verdampfunstemperatur: 7.0
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.8
|
||||
Adresse 24 - Heisgastemperatur: 75.8
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.8
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 35.8
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 20.0
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.5
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1659.8
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
||||
Adresse 510 - Störung 1 Nummer: 0
|
||||
Adresse 512 - Störung 2 Nummer: 0
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.7
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 65.6
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.1
|
||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 65.2
|
||||
Adresse 24 - Heisgastemperatur: 75.9
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 36.0
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 36.0
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.5
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.6
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1659.8
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
||||
Adresse 510 - Störung 1 Nummer: 0
|
||||
Adresse 512 - Störung 2 Nummer: 0
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 65.7
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.2
|
||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 65.0
|
||||
Adresse 24 - Heisgastemperatur: 76.0
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.9
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.8
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 35.9
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1659.9
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
||||
Adresse 510 - Störung 1 Nummer: 0
|
||||
Adresse 512 - Störung 2 Nummer: 0
|
||||
Adresse 0 - Primärpumpe: 78.6
|
||||
Adresse 1 - Ventilator: 0.0
|
||||
Adresse 2 - Ladepumpe: 20.0
|
||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
||||
Adresse 4 - Boilerpumpe: 0.0
|
||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
||||
Adresse 6 - Kondensator Ventil: 0.0
|
||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
||||
Adresse 20 - Kondensationstemperatur: 65.8
|
||||
Adresse 21 - Flüssigkeitstemperatur: 57.3
|
||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
||||
Adresse 23 - Sauggastemperatur: 7.4
|
||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.8
|
||||
Adresse 24 - Heisgastemperatur: 75.9
|
||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
||||
Adresse 31 - Durchfluss Umweltseite: 0
|
||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
||||
Adresse 46 - WP Leistung in %: 0.0
|
||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.7
|
||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.8
|
||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
||||
Adresse 170 - Puffertemperatur Heizung: 35.7
|
||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
||||
Adresse 300 - Aussentemperatur: 10.7
|
||||
Adresse 310 - Sonderanwendungen : 30000
|
||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
||||
Adresse 319 - Leistung FU Ausgang kW: 1659.9
|
||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
||||
@@ -1,61 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
import struct, sys
|
||||
|
||||
MODBUS_IP = "192.168.1.112"
|
||||
MODBUS_PORT = 502
|
||||
UNIT_ID = 1
|
||||
|
||||
METER_START = 40240 # Startadresse Model 203-Felder
|
||||
|
||||
def to_i16(u16): # unsigned 16 → signed 16
|
||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
||||
|
||||
def read_regs(client, addr, count):
|
||||
rr = client.read_holding_registers(address=addr, count=count, slave=UNIT_ID)
|
||||
if rr.isError():
|
||||
return None
|
||||
return rr.registers
|
||||
|
||||
def read_meter_power(client):
|
||||
base = METER_START
|
||||
p = read_regs(client, base + 16, 1) # M_AC_Power
|
||||
pa = read_regs(client, base + 17, 1) # Phase A
|
||||
pb = read_regs(client, base + 18, 1) # Phase B
|
||||
pc = read_regs(client, base + 19, 1) # Phase C
|
||||
sf = read_regs(client, base + 20, 1) # Scale Factor
|
||||
if not p or not sf:
|
||||
return None
|
||||
sff = to_i16(sf[0])
|
||||
return {
|
||||
"total": to_i16(p[0]) * (10 ** sff),
|
||||
"A": to_i16(pa[0]) * (10 ** sff) if pa else None,
|
||||
"B": to_i16(pb[0]) * (10 ** sff) if pb else None,
|
||||
"C": to_i16(pc[0]) * (10 ** sff) if pc else None,
|
||||
"sf": sff
|
||||
}
|
||||
|
||||
def fmt_w(v):
|
||||
if v is None: return "-"
|
||||
neg = v < 0
|
||||
v = abs(v)
|
||||
return f"{'-' if neg else ''}{v/1000:.2f} kW" if v >= 1000 else f"{'-' if neg else ''}{v:.0f} W"
|
||||
|
||||
def main():
|
||||
client = ModbusTcpClient(MODBUS_IP, port=MODBUS_PORT)
|
||||
if not client.connect():
|
||||
print("❌ Verbindung fehlgeschlagen."); sys.exit(1)
|
||||
try:
|
||||
m = read_meter_power(client)
|
||||
if m:
|
||||
print(f"Meter-Leistung: {fmt_w(m['total'])} "
|
||||
f"(A {fmt_w(m['A'])}, B {fmt_w(m['B'])}, C {fmt_w(m['C'])}) [SF={m['sf']}]")
|
||||
else:
|
||||
print("Meter-Leistung konnte nicht gelesen werden.")
|
||||
finally:
|
||||
client.close()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
110
test_wr.py
110
test_wr.py
@@ -1,110 +0,0 @@
|
||||
from pymodbus.client import ModbusTcpClient
|
||||
import struct
|
||||
import sys
|
||||
from typing import Optional
|
||||
|
||||
# === Verbindungseinstellungen ===
|
||||
MODBUS_IP = "192.168.1.112"
|
||||
MODBUS_PORT = 502 # SetApp: 1502; LCD-Menü: 502 -> ggf. anpassen
|
||||
UNIT_ID = 1 # Default laut Doku: 1
|
||||
|
||||
client = ModbusTcpClient(MODBUS_IP, port=MODBUS_PORT)
|
||||
if not client.connect():
|
||||
print("Verbindung fehlgeschlagen.")
|
||||
sys.exit(1)
|
||||
|
||||
def read_regs(addr: int, count: int):
|
||||
"""Hilfsfunktion: liest 'count' Holding-Register ab base-0 'addr'."""
|
||||
rr = client.read_holding_registers(address=addr, count=count)
|
||||
if rr.isError():
|
||||
return None
|
||||
return rr.registers
|
||||
|
||||
def read_string(addr: int, words: int) -> Optional[str]:
|
||||
"""
|
||||
SunSpec-Strings: ASCII, Big-Endian, 2 Bytes pro Register, 0x00 gepadded.
|
||||
"""
|
||||
regs = read_regs(addr, words)
|
||||
if regs is None:
|
||||
return None
|
||||
b = b"".join(struct.pack(">H", r) for r in regs)
|
||||
# SunSpec Strings sind meist mit \x00 und Spaces gepadded:
|
||||
s = b.decode("ascii", errors="ignore").rstrip("\x00 ").strip()
|
||||
return s or None
|
||||
|
||||
def to_int16(u16: int) -> int:
|
||||
"""unsigned 16 -> signed 16"""
|
||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
||||
|
||||
def apply_sf(raw: int, sf: int) -> float:
|
||||
return raw * (10 ** sf)
|
||||
|
||||
def read_scaled(value_addr: int, sf_addr: int) -> Optional[float]:
|
||||
regs = read_regs(value_addr, 1)
|
||||
sf = read_regs(sf_addr, 1)
|
||||
if regs is None or sf is None:
|
||||
return None
|
||||
raw = to_int16(regs[0])
|
||||
sff = to_int16(sf[0])
|
||||
return apply_sf(raw, sff)
|
||||
|
||||
def read_u32_with_sf(value_addr: int, sf_addr: int) -> Optional[float]:
|
||||
"""
|
||||
Liest 32-bit Zähler (acc32, Big-Endian, 2 Register) + SF.
|
||||
"""
|
||||
regs = read_regs(value_addr, 2)
|
||||
sf = read_regs(sf_addr, 1)
|
||||
if regs is None or sf is None:
|
||||
return None
|
||||
# Big-Endian zusammenbauen:
|
||||
u32 = (regs[0] << 16) | regs[1]
|
||||
sff = to_int16(sf[0])
|
||||
return apply_sf(u32, sff)
|
||||
|
||||
# ==== Common Block (base-0) ====
|
||||
manufacturer = read_string(40004, 16) # C_Manufacturer
|
||||
model = read_string(40020, 16) # C_Model
|
||||
version = read_string(40044, 8) # C_Version
|
||||
serial = read_string(40052, 16) # C_SerialNumber
|
||||
|
||||
print(f"Hersteller: {manufacturer}")
|
||||
print(f"Modell: {model}")
|
||||
print(f"Version: {version}")
|
||||
print(f"Seriennummer: {serial}")
|
||||
|
||||
# ==== Inverter Block (base-0) ====
|
||||
# AC Power + Scale Factor
|
||||
ac_power = read_scaled(40083, 40084) # I_AC_Power, I_AC_Power_SF
|
||||
if ac_power is not None:
|
||||
print(f"AC Power: {ac_power} W")
|
||||
else:
|
||||
print("Fehler beim Lesen von AC Power")
|
||||
|
||||
# AC Spannung L-N Durchschnitt (falls 1ph/3ph mit N verfügbar) + SF
|
||||
ac_voltage = read_scaled(40079, 40082) # I_AC_VoltageAN, I_AC_Voltage_SF
|
||||
if ac_voltage is not None:
|
||||
print(f"AC Spannung: {ac_voltage} V")
|
||||
|
||||
# AC Frequenz + SF
|
||||
ac_freq = read_scaled(40085, 40086) # I_AC_Frequency, _SF
|
||||
if ac_freq is not None:
|
||||
print(f"Frequenz: {ac_freq} Hz")
|
||||
|
||||
# DC Power + SF
|
||||
dc_power = read_scaled(40100, 40101) # I_DC_Power, _SF
|
||||
if dc_power is not None:
|
||||
print(f"DC Power: {dc_power} W")
|
||||
|
||||
# Lifetime Energy (AC_Energy_WH, acc32) + SF
|
||||
lifetime_wh = read_u32_with_sf(40093, 40095) # I_AC_Energy_WH, _SF
|
||||
if lifetime_wh is not None:
|
||||
print(f"Lifetime Energy: {lifetime_wh} Wh")
|
||||
|
||||
# Status
|
||||
status_regs = read_regs(40107, 2) # I_Status, I_Status_Vendor
|
||||
if status_regs:
|
||||
i_status = status_regs[0]
|
||||
i_status_vendor = status_regs[1]
|
||||
print(f"Status: {i_status} (Vendor: {i_status_vendor})")
|
||||
|
||||
client.close()
|
||||
Reference in New Issue
Block a user