Last active
July 23, 2026 14:39
-
-
Save PsychoSmiley/85dfcfbab95c9901a9f8fa503d973f32 to your computer and use it in GitHub Desktop.
live arousal prediction (from stroker device) + inference-driven edging for a Bluetooth stroker (Intiface Central). A ~10-parameter mechanistic state-space model (grey-box ODE NN - effectively a liquid network with frozen time-constants) reads the stroke stream and predicts arousal 0..1 live (1.0 = orgasm); a separate wave-controller policy driv…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| cumpredict -- live arousal prediction + inference-driven edging for a Bluetooth stroker. | |
| A tiny MECHANISTIC STATE-SPACE MODEL reads the stroke stream of a linear stroker | |
| (e.g. Kiiroo Keon via Intiface Central, buttplug protocol) and outputs a live arousal | |
| estimate 0..1 (1.0 = orgasm). A separate WAVE-CONTROLLER POLICY drives the toy from | |
| that prediction: build -> ease off at the (escalating) edge -> optionally finish. | |
| The human never signals anything; his sparse 0-9 key presses are ground-truth labels | |
| only and never touch the model or the device. | |
| Design notes (the why -- the what is below in code): | |
| * Predictor = grey-box ODE, ~10 physical params (excitation -> threshold-gated slow | |
| arousal accumulator + habituation; exact closed-form per-stroke updates). With only | |
| a handful of sessions, structure beats capacity: a GRU trained on the same data | |
| collapsed to a constant on held-out sessions; the physics extrapolates. It is also, | |
| deliberately, a liquid network (CfC) with frozen time-constants -- the upgrade path | |
| is to unfreeze them, not to rewrite. | |
| * The fit is GRADIENT-FREE (CEM over a batched NumPy scan): autograd through a | |
| 5000-step sequential scan is pathologically slow on Windows/WDDM; CEM fits in | |
| seconds and a resting-sanity penalty keeps the gate from leaking (a model whose | |
| arousal cannot decay is a controller that stalls in brake forever). | |
| * Predictor and Director are SEPARATE and never merged -- otherwise the policy | |
| reward-hacks the perception it is judged by. | |
| * Labels: interpolate-on-rise targets (a press lags the felt level), per-second loss | |
| weighting, near-cum emphasis, press-instant boosting, and physically-plausible | |
| augmentation (jitter + time-warp) to decorrelate stroke rate from outcome. | |
| * Evaluation is EVENT-LEVEL and honest: cum-detection lead time, false alarms/hour, | |
| cum-vs-no-cum separation, leave-one-session-out with the held-out session untouched. | |
| Per-row MSE rewards flat-lining; don't use it. When re-verifying a refit on an old | |
| recording, --recompute (logged predictions reflect the model AT RECORD TIME). | |
| Data: one combined CSV with columns [session, time_elapse, intensity, tired_level] | |
| (time_elapse = stroke duration in MINUTES; intensity = commanded reach 0..1; | |
| tired_level = sparse manual label 0..1, 1.0 = cum), or a directory of per-session CSVs. | |
| The trained model is NOT shipped -- it is personal (a different body = a different fit). | |
| Reproduce it from the included sessions.csv, then run live: | |
| python cumpredict.py train --data sessions.csv # fit -> writes artifacts/config_core.json | |
| python cumpredict.py live # drive the toy with that model | |
| python cumpredict.py report --file SESSION.csv [--recompute] # score a recording | |
| python cumpredict.py sim # offline safety check (run BEFORE live) | |
| python cumpredict.py parity # streaming == batch, exactly | |
| To use your OWN data: record sessions (live writes one CSV per session), merge them into a | |
| sessions.csv with a `session` column, and retrain -- the model does not transfer between people. | |
| Live keys: 0-9 = your arousal (9 = cumming), q = quit safely. The device is always | |
| stopped on exit; if the toy drops mid-session it auto-reconnects and resumes. | |
| Deps: numpy pandas [matplotlib scipy] + for live: buttplug-py==0.3.0 keyboard | |
| """ | |
| import argparse | |
| import glob | |
| import json | |
| import math | |
| import os | |
| import sys | |
| import time | |
| import numpy as np | |
| import pandas as pd | |
| # ----------------------------------------------------------------------------- data prep | |
| BETA = 4.0 # near-cum loss emphasis: weight *= 1 + BETA*y | |
| PRESS_BOOST = 8.0 # extra weight on real key-press rows (the only true labels) | |
| def _interp_on_rise(lab, t_s): | |
| """Dense target from a sparse label array: ramp UP between rising presses, step DOWN.""" | |
| T = len(lab) | |
| press_idx = np.where(~np.isnan(lab))[0] | |
| y = np.zeros(T, dtype=np.float64) | |
| is_press = np.zeros(T, dtype=bool) | |
| if len(press_idx) == 0: | |
| return y.astype(np.float32), is_press, press_idx, np.array([]) | |
| is_press[press_idx] = True | |
| press_vals = lab[press_idx] | |
| i0, v0 = press_idx[0], press_vals[0] | |
| if i0 > 0 and v0 > 0: # leading ramp 0 -> first press | |
| seg = slice(0, i0 + 1) | |
| span = max(t_s[i0] - t_s[0], 1e-9) | |
| y[seg] = v0 * (t_s[seg] - t_s[0]) / span | |
| else: | |
| y[: i0 + 1] = v0 | |
| for j in range(len(press_idx)): | |
| a, va = press_idx[j], press_vals[j] | |
| if j + 1 < len(press_idx): | |
| b, vb = press_idx[j + 1], press_vals[j + 1] | |
| else: | |
| b, vb = T - 1, va # hold last value to end of session | |
| y[a] = va | |
| if b == a: | |
| continue | |
| if vb > va: # rising -> linear ramp in time | |
| seg = slice(a, b + 1) | |
| span = max(t_s[b] - t_s[a], 1e-9) | |
| y[seg] = va + (vb - va) * (t_s[seg] - t_s[a]) / span | |
| else: # falling/flat -> hold, step down at the press | |
| y[a:b] = va | |
| y[b] = vb | |
| return np.clip(y, 0.0, 1.0).astype(np.float32), is_press, press_idx, press_vals | |
| def session_from_raw(name, dur_s, intensity, tired_sparse): | |
| """Build a session dict from raw arrays (used for real files AND augmented copies).""" | |
| dur_s = np.clip(np.asarray(dur_s, dtype=np.float64), 1e-3, None) | |
| intensity = np.clip(np.asarray(intensity, dtype=np.float64), 0.0, 1.0) | |
| tired_sparse = np.asarray(tired_sparse, dtype=np.float64) | |
| t_s = np.cumsum(dur_s) | |
| y, is_press, press_idx, press_vals = _interp_on_rise(tired_sparse, t_s) | |
| w = dur_s * (1.0 + BETA * y) | |
| w[is_press] *= PRESS_BOOST | |
| return { | |
| "name": name, "intensity": intensity.astype(np.float32), | |
| "y": y, "w": w.astype(np.float32), "is_press": is_press, | |
| "dur_s": dur_s.astype(np.float32), "t_s": t_s, "t_min": t_s / 60.0, | |
| "press_idx": press_idx, "press_vals": press_vals.astype(np.float32), | |
| "raw_dur_s": dur_s.copy(), "raw_intensity": intensity.copy(), "raw_tired": tired_sparse.copy(), | |
| } | |
| def _clean_frame(df): | |
| df.columns = [c.strip() for c in df.columns] | |
| for c in ("time_elapse", "intensity", "tired_level"): | |
| df[c] = pd.to_numeric(df[c], errors="coerce") | |
| return df.dropna(subset=["time_elapse", "intensity"]).reset_index(drop=True) | |
| def _session_from_frame(name, df): | |
| return session_from_raw(name, df["time_elapse"].to_numpy(dtype=np.float64) * 60.0, | |
| df["intensity"].to_numpy(dtype=np.float64), | |
| df["tired_level"].to_numpy(dtype=np.float64)) | |
| def load_sessions(data_path): | |
| """Sessions from a combined CSV (with a `session` column) or a directory of CSVs.""" | |
| if os.path.isdir(data_path): | |
| return [_session_from_frame(os.path.basename(p)[:-4], _clean_frame(pd.read_csv(p))) | |
| for p in sorted(glob.glob(os.path.join(data_path, "*.csv")))] | |
| df = pd.read_csv(data_path) | |
| df.columns = [c.strip() for c in df.columns] | |
| if "session" not in df.columns: | |
| return [_session_from_frame(os.path.splitext(os.path.basename(data_path))[0], _clean_frame(df))] | |
| return [_session_from_frame(str(name), _clean_frame(g.drop(columns=["session"]))) | |
| for name, g in sorted(df.groupby("session", sort=False), key=lambda kv: kv[0])] | |
| def augment_raw(sess, rng, warp=True): | |
| """One physically-plausible augmented copy. Real labels stay untouched; the copy always | |
| keeps the true session start so the causal integrator never sees a mid-session cold start.""" | |
| dur = sess["raw_dur_s"].copy() | |
| inten = sess["raw_intensity"].copy() | |
| tired = sess["raw_tired"].copy() | |
| n = len(dur) | |
| if rng.random() < 0.5: # end-truncation | |
| k = int(rng.integers(int(0.6 * n), n + 1)) | |
| dur, inten, tired = dur[:k], inten[:k], tired[:k] | |
| inten = np.clip(inten + rng.uniform(-0.05, 0.05, len(inten)), 0.0, 1.0) | |
| dur = dur * np.exp(rng.uniform(-0.10, 0.10, len(dur))) | |
| if warp: # global time-warp 0.7x..1.4x | |
| dur = dur * float(np.exp(rng.uniform(np.log(0.7), np.log(1.4)))) | |
| return session_from_raw(sess["name"] + "_aug", dur, inten, tired) | |
| # ------------------------------------------------------------------------ mechanistic core | |
| # State per stroke of duration dt, exact closed-form update (each ODE is linear given the | |
| # drive held constant over the stroke): | |
| # P = intensity^a * rate^b stimulation power | |
| # E <- E + (1-exp(-dt/tauE))*(P - E) fast excitation (leaky-tracked P) | |
| # de = softplus(g*(E - thr - kH*H)) drive EXCESS above threshold | |
| # A <- A_ss + (A-A_ss)*exp(-(rho*de+lam)*dt) slow arousal accumulator, A_ss=rho*de/(rho*de+lam) | |
| # H <- H_ss + (H-H_ss)*exp(-dH*dt) slow habituation, H_ss=hH*A/dH | |
| # When E < thr (slow/weak strokes), de~0 and arousal only DECAYS -- "slow == safe" comes | |
| # from physics, not from having enough negative data. | |
| CORE_NAMES = ["a", "b", "tauE", "g", "thr", "rho", "lam", "kH", "hH", "dH"] | |
| CORE_BOUNDS = np.array([ | |
| [1.00, 3.0], # a intensity exponent; >=1 so stroke DEPTH really modulates drive | |
| [0.20, 1.5], # b rate exponent; capped -- b~3 made one stroke max out arousal | |
| [10.0, 60.0], # tauE excitation time-constant (s); floor so response isn't instant | |
| [0.20, 10.0], # g excitation-excess gain | |
| [0.00, 2.5], # thr excitation threshold | |
| [1e-4, 0.02], # rho arousal accumulation /s; capped so buildup is gradual | |
| [0.015, 0.06], # lam arousal decay /s; floor so backing off actually lowers arousal | |
| [0.00, 5.0], # kH habituation threshold-shift | |
| [0.00, 0.05], # hH habituation build rate | |
| [1e-4, 0.02], # dH habituation decay /s | |
| ]) | |
| def softplus(x): | |
| return np.logaddexp(0.0, x) | |
| def core_scan(intensity, rate, dt, a, b, tauE, g, thr, rho, lam, kH, hH, dH): | |
| """intensity/rate/dt: [B,T]; each param: [B]. Returns A,E,H: [B,T].""" | |
| a2 = a.reshape(-1, 1); b2 = b.reshape(-1, 1) | |
| P = np.clip(intensity, 1e-4, 1.0) ** a2 * np.clip(rate, 1e-4, None) ** b2 | |
| alphaE = 1.0 - np.exp(-dt / tauE.reshape(-1, 1)) | |
| decayH = np.exp(-dH.reshape(-1, 1) * dt) | |
| B, T = intensity.shape | |
| E = np.zeros(B); A = np.zeros(B); H = np.zeros(B) | |
| Aout = np.empty((B, T)); Eout = np.empty((B, T)); Hout = np.empty((B, T)) | |
| for t in range(T): | |
| E = E + alphaE[:, t] * (P[:, t] - E) | |
| de = softplus(g * (E - thr - kH * H)) | |
| k = rho * de + lam | |
| A_ss = rho * de / k | |
| A = A_ss + (A - A_ss) * np.exp(-k * dt[:, t]) | |
| H_ss = hH * A / dH | |
| H = H_ss + (H - H_ss) * decayH[:, t] | |
| Aout[:, t] = A; Eout[:, t] = E; Hout[:, t] = H | |
| return Aout, Eout, Hout | |
| def scan_params(intensity, rate, dt, params_row): | |
| return core_scan(intensity, rate, dt, *[params_row[:, i] for i in range(len(CORE_NAMES))]) | |
| class CoreStreamer: | |
| """Online (per-stroke) core -- bit-identical to core_scan; ~10 lines to port to JS.""" | |
| def __init__(self, params, theta=0.8, alarm_debounce_s=15.0): | |
| p = [params[k] for k in CORE_NAMES] if isinstance(params, dict) else list(params) | |
| (self.a, self.b, self.tauE, self.g, self.thr, | |
| self.rho, self.lam, self.kH, self.hH, self.dH) = p | |
| self.theta = theta | |
| self.debounce = alarm_debounce_s | |
| self.E = 0.0; self.A = 0.0; self.H = 0.0 | |
| self._above_since = None | |
| self._t = 0.0 | |
| def step(self, intensity, dt): | |
| """One stroke. Returns (arousal 0..1, debounced_alarm_bool).""" | |
| intensity = min(max(float(intensity), 1e-4), 1.0) | |
| dt = max(float(dt), 1e-3) | |
| P = intensity ** self.a * max(1.0 / dt, 1e-4) ** self.b | |
| self.E += (1.0 - np.exp(-dt / self.tauE)) * (P - self.E) | |
| de = softplus(self.g * (self.E - self.thr - self.kH * self.H)) | |
| k = self.rho * de + self.lam | |
| A_ss = self.rho * de / k | |
| self.A = A_ss + (self.A - A_ss) * np.exp(-k * dt) | |
| H_ss = self.hH * self.A / self.dH | |
| self.H = H_ss + (self.H - H_ss) * np.exp(-self.dH * dt) | |
| self._t += dt | |
| A = float(np.clip(self.A, 0.0, 1.0)) | |
| if A >= self.theta: | |
| if self._above_since is None: | |
| self._above_since = self._t | |
| alarm = (self._t - self._above_since) >= self.debounce | |
| else: | |
| self._above_since = None | |
| alarm = False | |
| return A, alarm | |
| # ------------------------------------------------------------------------------- director | |
| class Director: | |
| """Wave-controller policy (build/brake/finish) acting only on the predicted arousal. | |
| Continuous proportional depth/speed + LFO (no bang-bang); a LOADING state L makes it | |
| brake earlier & harder each successive edge (the momentum of edging); an online brake | |
| GAIN ramps on near-misses. finish_after=N: after N edges, never brake again -- drive | |
| to climax at the device's max stroke rate.""" | |
| def __init__(self, setpoint=0.70, band=0.20, finish_after=None): | |
| self.setpoint = setpoint | |
| self.band = max(0.08, band) | |
| self.finish_after = finish_after | |
| self.L = 0.0 | |
| self.gain = 1.0 | |
| self.edges = 0 | |
| self.phase = "build" | |
| self.t = 0.0 | |
| self.prevA = 0.0 | |
| self.hi = setpoint | |
| def _wave(self, period): | |
| return 0.5 + 0.5 * math.sin(2.0 * math.pi * self.t / period) | |
| def step(self, A, dt): | |
| """arousal A, dt seconds -> (reach 0..1, duration_s).""" | |
| self.t += dt | |
| slope = (A - self.prevA) / max(dt, 1e-3) | |
| self.prevA = A | |
| self.L += dt * (0.03 * max(0.0, A - (self.setpoint - 0.20))) - dt * 0.001 * self.L | |
| # escalating brake, CAPPED, with a floored exit so it can always climb back out | |
| self.hi = self.setpoint - min(0.15 * self.L * self.gain, 0.15) | |
| lo = max(self.hi - self.band, 0.22) | |
| if self.phase == "build" and (A >= self.hi or (A >= self.hi - 0.05 and slope > 0.06)): | |
| self.phase = "brake"; self.edges += 1 | |
| if slope > 0.08 or A > self.hi + 0.03: | |
| self.gain = min(3.0, self.gain * 1.3) | |
| elif self.phase == "brake" and A <= lo: | |
| self.phase = "build" | |
| if self.finish_after is not None and self.edges >= self.finish_after: | |
| self.phase = "finish" | |
| if self.phase == "finish": # device max (~0.13s/half-stroke), full reach | |
| reach, dur = 1.0, 0.13 | |
| elif self.phase == "build": # moderate depth, fast undulating pace | |
| gap = max(0.0, self.hi - A) | |
| reach = (0.40 + 0.30 * min(1.0, gap * 3.0)) * (0.85 + 0.15 * self._wave(2.5)) | |
| dur = 0.14 + 0.10 * self._wave(3.0) | |
| else: # ease off: shallow + slow | |
| ease = min(0.90, 0.5 + 0.3 * self.L * self.gain) | |
| reach = max(0.03, (1.0 - ease) * 0.4) * (0.6 + 0.4 * self._wave(4.0)) | |
| dur = 0.5 + 0.4 * self._wave(4.0) | |
| return round(min(1.0, max(0.02, reach)), 3), round(dur, 3) | |
| # ---------------------------------------------------------------------------- event metrics | |
| CUM_THR = 0.99 | |
| EDGE_THR = 0.78 | |
| MERGE_GAP_MIN = 2.0 | |
| DEBOUNCE_S = 15.0 | |
| HIT_MIN_LEAD_S = 15.0 | |
| HIT_MAX_LEAD_S = 300.0 | |
| NEAR_EDGE_S = 120.0 | |
| def merge_cum_onsets(t_s, press_idx, press_vals): | |
| times = sorted(float(t_s[i]) for i, v in zip(press_idx, press_vals) if v >= CUM_THR) | |
| merged = [] | |
| for tm in times: | |
| if not merged or tm - merged[-1] > MERGE_GAP_MIN * 60.0: | |
| merged.append(tm) | |
| return merged | |
| def edge_times(t_s, press_idx, press_vals): | |
| return [float(t_s[i]) for i, v in zip(press_idx, press_vals) if EDGE_THR <= v < CUM_THR] | |
| def detect_alarms(pred, t_s, theta, debounce_s=DEBOUNCE_S, require_rising=True): | |
| above = pred >= theta | |
| onsets = [] | |
| i, n = 0, len(pred) | |
| while i < n: | |
| if above[i]: | |
| j = i | |
| while j < n and above[j]: | |
| j += 1 | |
| if t_s[j - 1] - t_s[i] >= debounce_s or (j - i) >= 3: | |
| if not require_rising or i == 0 or pred[i] >= pred[max(i - 3, 0)]: | |
| onsets.append(float(t_s[i])) | |
| i = j | |
| else: | |
| i += 1 | |
| return onsets | |
| def score_session(sess, pred, theta): | |
| t_s = sess["t_s"] | |
| cums = merge_cum_onsets(t_s, sess["press_idx"], sess["press_vals"]) | |
| edges = edge_times(t_s, sess["press_idx"], sess["press_vals"]) | |
| alarms = detect_alarms(pred, t_s, theta) | |
| detections, leads = [], [] | |
| for c in cums: | |
| prior = [a for a in alarms if HIT_MIN_LEAD_S <= (c - a) <= HIT_MAX_LEAD_S] | |
| if prior: | |
| detections.append(True); leads.append(c - max(prior)) | |
| else: | |
| detections.append(False) | |
| false_alarms = edge_hits = 0 | |
| for a in alarms: | |
| # a valid early-warning lead (up to HIT_MAX_LEAD_S before a cum) or a just-after alarm | |
| # is a detection, not a false alarm | |
| if any(-30.0 <= (c - a) <= HIT_MAX_LEAD_S for c in cums): | |
| continue | |
| if any(abs(a - e) <= NEAR_EDGE_S for e in edges): | |
| edge_hits += 1 # detecting an approach-to-edge is the product, not a false alarm | |
| else: | |
| false_alarms += 1 | |
| dur_h = float(t_s[-1]) / 3600.0 | |
| return {"session": sess["name"], "peak": round(float(pred.max()), 3), | |
| "n_cum": len(cums), "detected": int(sum(detections)), | |
| "leads_s": [round(l, 1) for l in leads], | |
| "median_lead_s": round(float(np.median(leads)), 1) if leads else None, | |
| "edge_detections": edge_hits, "false_alarms": false_alarms, | |
| "fa_per_hour": round(false_alarms / dur_h, 2) if dur_h > 0 else None} | |
| def press_metrics(press_idx, press_vals, pred): | |
| """(MAE, Kendall tau) vs the real key presses -- the only true labels.""" | |
| if len(press_idx) == 0: | |
| return None, None | |
| mae = float(np.mean(np.abs(pred[press_idx] - press_vals))) | |
| tau = None | |
| try: | |
| from scipy.stats import kendalltau | |
| if len(press_idx) > 2: | |
| tau = float(kendalltau(pred[press_idx], press_vals).correlation) | |
| except Exception: | |
| pass | |
| return round(mae, 3), (round(tau, 3) if tau is not None else None) | |
| def separation_margin(sessions, preds): | |
| cum_peaks, neg_peaks = [], [] | |
| for s, p in zip(sessions, preds): | |
| peak = float(np.max(p)) | |
| if merge_cum_onsets(s["t_s"], s["press_idx"], s["press_vals"]): | |
| cum_peaks.append(peak) | |
| else: | |
| neg_peaks.append(peak) | |
| if not cum_peaks or not neg_peaks: | |
| return None | |
| return round(min(cum_peaks) - max(neg_peaks), 3) | |
| # ------------------------------------------------------------------------------ CEM fitting | |
| CEM_ITERS = 40 | |
| CEM_POP = 80 | |
| CEM_ELITE = 0.15 | |
| CEM_RESTARTS = 2 | |
| N_AUG = 2 # augmented copies per training session in the fit pool | |
| REST_PENALTY = 3.0 # resting-sanity: zero-stim arousal must decay to ~0 (or edging stalls) | |
| THETA_GRID = np.round(np.linspace(0.50, 0.95, 19), 3) | |
| def pad(sessions): | |
| T = max(len(s["dur_s"]) for s in sessions) | |
| B = len(sessions) | |
| inten = np.zeros((B, T)); rate = np.ones((B, T)); dt = np.zeros((B, T)) | |
| y = np.zeros((B, T)); w = np.zeros((B, T)); mask = np.zeros((B, T)) | |
| for i, s in enumerate(sessions): | |
| n = len(s["dur_s"]); d = s["dur_s"].astype(np.float64) | |
| inten[i, :n] = s["intensity"]; rate[i, :n] = 1.0 / d; dt[i, :n] = d | |
| y[i, :n] = s["y"]; w[i, :n] = s["w"]; mask[i, :n] = 1.0 | |
| return inten, rate, dt, y, w * mask | |
| def cem_fit(train_sessions, rng): | |
| pool = list(train_sessions) + [augment_raw(s, rng) for s in train_sessions for _ in range(N_AUG)] | |
| inten, rate, dt, y, wm = pad(pool) | |
| n = inten.shape[0] | |
| ndim = CORE_BOUNDS.shape[0] | |
| lo, hi = CORE_BOUNDS[:, 0], CORE_BOUNDS[:, 1] | |
| def eval_pop(P): | |
| S = P.shape[0] | |
| bi = np.tile(inten, (S, 1)); br = np.tile(rate, (S, 1)); bd = np.tile(dt, (S, 1)) | |
| by = np.tile(y, (S, 1)); bwm = np.tile(wm, (S, 1)) | |
| A, _, _ = scan_params(bi, br, bd, np.repeat(P, n, axis=0)) | |
| e = by - np.clip(A, 0.0, 1.0) | |
| pin = np.maximum(0.75 * e, -0.25 * e) * bwm # pinball tau=0.75: an alarm wants | |
| row = pin.sum(1) / (bwm.sum(1) + 1e-8) # the upper arousal estimate | |
| data = row.reshape(S, n).mean(1) | |
| g, thr, rho, lam = P[:, 3], P[:, 4], P[:, 5], P[:, 6] | |
| de_rest = softplus(g * (-thr)) | |
| Ass_rest = rho * de_rest / (rho * de_rest + lam) | |
| return data + REST_PENALTY * Ass_rest ** 2 | |
| best, best_loss = None, np.inf | |
| k = max(3, int(CEM_POP * CEM_ELITE)) | |
| for _ in range(CEM_RESTARTS): | |
| mean = np.clip((lo + hi) / 2 + 0.25 * (hi - lo) * rng.standard_normal(ndim), lo, hi) | |
| std = (hi - lo) / 4.0 | |
| for _ in range(CEM_ITERS): | |
| P = np.clip(mean + std * rng.standard_normal((CEM_POP, ndim)), lo, hi) | |
| if best is not None: | |
| P[0] = best | |
| L = eval_pop(P) | |
| idx = np.argsort(L)[:k] | |
| elite = P[idx] | |
| mean, std = elite.mean(0), elite.std(0) + 1e-3 * (hi - lo) | |
| if L[idx[0]] < best_loss: | |
| best_loss, best = L[idx[0]], P[idx[0]].copy() | |
| return best, best_loss | |
| def predict_core(params, sess): | |
| inten, rate, dt, _, _ = pad([sess]) | |
| A, _, _ = scan_params(inten, rate, dt, params[None, :]) | |
| return np.clip(A[0], 0.0, 1.0) | |
| def export_config(path, params, alarm_theta, extra=None): | |
| cfg = {"model": "core", "core_names": CORE_NAMES, | |
| "core_params": {n: float(v) for n, v in zip(CORE_NAMES, params)}, | |
| "alarm_theta": alarm_theta, **(extra or {})} | |
| os.makedirs(os.path.dirname(path) or ".", exist_ok=True) | |
| with open(path, "w") as f: | |
| json.dump(cfg, f, indent=2) | |
| print(f"exported {path}") | |
| def load_config(path): | |
| if not os.path.exists(path): | |
| sys.exit(f"no model at {path} -- train one first:\n" | |
| f" python cumpredict.py train --data sessions.csv") | |
| with open(path) as f: | |
| raw = f.read() | |
| import hashlib | |
| return json.loads(raw), hashlib.sha1(raw.encode()).hexdigest()[:10] | |
| # ------------------------------------------------------------------------------ subcommands | |
| def cmd_train(args): | |
| sessions = load_sessions(args.data) | |
| rng = np.random.default_rng(0) | |
| print(f"CORE (CEM) pop={CEM_POP} iters={CEM_ITERS} restarts={CEM_RESTARTS} " | |
| f"sessions={[s['name'] for s in sessions]}\n") | |
| if not sessions: | |
| sys.exit(f"no sessions found in {args.data}") | |
| if len(sessions) < 2: | |
| print("only 1 session -- skipping leave-one-out; fitting the deployed config directly.") | |
| params, loss = cem_fit(sessions, rng) | |
| print(f"fitloss={loss:.4f} params:", {n: round(float(v), 4) for n, v in zip(CORE_NAMES, params)}) | |
| export_config(args.config, params, args.shield) | |
| return | |
| fold_preds, fold_params = [], [] | |
| for held in sessions: | |
| params, loss = cem_fit([s for s in sessions if s is not held], rng) | |
| fold_preds.append(predict_core(params, held)) | |
| fold_params.append(params) | |
| pp = {n: round(float(v), 3) for n, v in zip(CORE_NAMES, params)} | |
| print(f" held={held['name']:<28} peak={fold_preds[-1].max():.2f} fitloss={loss:.4f} {pp}") | |
| margin = separation_margin(sessions, fold_preds) | |
| sweep = [] | |
| for th in THETA_GRID: | |
| tot = dict(cum=0, det=0, fa=0, edge=0) | |
| for s, p in zip(sessions, fold_preds): | |
| r = score_session(s, p, th) | |
| tot["cum"] += r["n_cum"]; tot["det"] += r["detected"] | |
| tot["fa"] += r["false_alarms"]; tot["edge"] += r["edge_detections"] | |
| sweep.append({"theta": float(th), **tot}) | |
| theta = sorted(sweep, key=lambda r: (-r["det"], r["fa"], -r["theta"]))[0]["theta"] | |
| print("\nthreshold sweep (LOSO aggregate):") | |
| for r in sweep: | |
| print(f" theta={r['theta']:.2f} det={r['det']}/{r['cum']} FA={r['fa']} edge={r['edge']}" | |
| + (" <==" if r["theta"] == theta else "")) | |
| print(f"\n=== LOSO @ theta={theta:.2f} (separation margin={margin}) ===") | |
| results = [] | |
| for s, p in zip(sessions, fold_preds): | |
| r = score_session(s, p, theta) | |
| r["press_mae"], r["kendall_tau"] = press_metrics(s["press_idx"], s["press_vals"], p) | |
| results.append(r) | |
| print(f" {r['session']:<28} peak={r['peak']:.2f} cum={r['detected']}/{r['n_cum']} " | |
| f"lead={r['median_lead_s']}s edges={r['edge_detections']} FA/h={r['fa_per_hour']} " | |
| f"pressMAE={r['press_mae']} tau={r['kendall_tau']}") | |
| try: # plot is best-effort; headless-safe | |
| import matplotlib | |
| matplotlib.use("Agg") | |
| import matplotlib.pyplot as plt | |
| ncol, nrow = 2, math.ceil(len(sessions) / 2) | |
| fig, axes = plt.subplots(nrow, ncol, figsize=(6.5 * ncol, 3.75 * nrow)) | |
| axes = np.array(axes).ravel() | |
| for k, (s, p) in enumerate(zip(sessions, fold_preds)): | |
| ax = axes[k]; tm = s["t_min"] | |
| ax.plot(tm, p, lw=1.4, label="pred") | |
| ax.plot(tm, s["y"], lw=1.0, alpha=0.5, label="target") | |
| if len(s["press_idx"]): | |
| ax.scatter(tm[s["press_idx"]], s["press_vals"], s=10, c="k", zorder=5) | |
| ax.axhline(theta, ls=":", c="r", lw=0.8) | |
| for c in merge_cum_onsets(s["t_s"], s["press_idx"], s["press_vals"]): | |
| ax.axvline(c / 60.0, c="g", ls="--", lw=1) | |
| ax.set_title(s["name"], fontsize=8); ax.set_ylim(-0.05, 1.08); ax.legend(fontsize=6) | |
| fig.suptitle(f"LOSO theta={theta:.2f} separation={margin}") | |
| fig.tight_layout() | |
| png = os.path.join(args.out_dir, "loso_core.png") | |
| os.makedirs(args.out_dir, exist_ok=True) | |
| fig.savefig(png, dpi=110) | |
| print(f"\nsaved {png}") | |
| except Exception as e: | |
| print(f"(plot skipped: {e})") | |
| # fresh seed for the deployed fit so `train` and `fit` export the SAME model (the LOSO folds | |
| # above advance `rng`); with a fixed seed the fit is deterministic and byte-reproducible. | |
| final_params, _ = cem_fit(sessions, np.random.default_rng(0)) | |
| export_config(args.config, final_params, theta, {"separation_margin": margin}) | |
| with open(os.path.join(args.out_dir, "loso_core_results.json"), "w") as f: | |
| json.dump({"theta": theta, "separation_margin": margin, "sweep": sweep, "folds": results, | |
| "fold_params": [{n: float(v) for n, v in zip(CORE_NAMES, p)} for p in fold_params]}, | |
| f, indent=2) | |
| def cmd_fit(args): | |
| sessions = load_sessions(args.data) | |
| if not sessions: | |
| sys.exit(f"no sessions found in {args.data}") | |
| print(f"fitting on {len(sessions)} sessions: {[s['name'] for s in sessions]}") | |
| params, loss = cem_fit(sessions, np.random.default_rng(0)) | |
| print(f"fitloss={loss:.4f}") | |
| print("params:", {n: round(float(v), 4) for n, v in zip(CORE_NAMES, params)}) | |
| export_config(args.config, params, args.shield, {"fit": "final-only"}) | |
| def cmd_parity(args): | |
| """Streaming inference must match the batch scan exactly (the JS-port contract).""" | |
| rng = np.random.default_rng(7) | |
| params = rng.uniform(CORE_BOUNDS[:, 0], CORE_BOUNDS[:, 1]) | |
| worst = 0.0 | |
| for s in load_sessions(args.data): | |
| inten = s["intensity"].astype(np.float64)[None, :] | |
| dur = s["dur_s"].astype(np.float64)[None, :] | |
| A_batch, _, _ = core_scan(inten, 1.0 / dur, dur, *[np.array([v]) for v in params]) | |
| st = CoreStreamer(dict(zip(CORE_NAMES, params))) | |
| A_stream = np.array([st.step(inten[0, t], dur[0, t])[0] for t in range(dur.shape[1])]) | |
| d = float(np.max(np.abs(np.clip(A_batch[0], 0, 1) - A_stream))) | |
| worst = max(worst, d) | |
| print(f" {s['name']:<28} max|batch-stream|={d:.2e}") | |
| print(f"\nworst parity error = {worst:.2e} -> {'PASS' if worst < 1e-9 else 'FAIL'}") | |
| return 0 if worst < 1e-9 else 1 | |
| def cmd_sim(args): | |
| """Offline closed-loop check: does backing off lower arousal, and does the Director | |
| cycle instead of stalling? Run this before ever going live on a new config.""" | |
| cfg, _ = load_config(args.config) | |
| params = cfg["core_params"] | |
| def sp(x): | |
| return math.log1p(math.exp(-abs(x))) + max(x, 0.0) | |
| de_rest = sp(params["g"] * (0.0 - params["thr"])) | |
| k = params["rho"] * de_rest + params["lam"] | |
| print(f"RESTING ATTRACTOR (toy off): A_ss = {params['rho'] * de_rest / k:.3f} (tau = {1.0/k:.0f}s)") | |
| def brake_run(A0, seconds, reach=0.10, dur=1.0): | |
| s = CoreStreamer(params) | |
| s.E, s.A = (0.9 if A0 > 0.4 else 0.0), float(A0) | |
| t = 0.0 | |
| while t < seconds: | |
| A, _ = s.step(reach, dur) | |
| t += dur | |
| return A | |
| drift = brake_run(0.0, 600.0) | |
| a_stop = brake_run(0.75, 120.0) | |
| ok = drift <= 0.40 and a_stop <= 0.40 # both must end below a typical edge_low | |
| print(f" brake test: 10min gentle-strokes from 0 = {drift:.3f} ({'PASS' if drift <= .4 else 'FAIL'})") | |
| print(f" brake test: 120s backing-off from 0.75 = {a_stop:.3f} ({'PASS' if a_stop <= .4 else 'FAIL'})") | |
| def closed_loop(setpoint, minutes=8.0): | |
| s = CoreStreamer(params) | |
| d = Director(setpoint=setpoint, band=0.20) | |
| t, A, last_dt, trace = 0.0, 0.0, 0.20, [] | |
| while t < minutes * 60.0: | |
| reach, dur = d.step(A, last_dt) | |
| A, _ = s.step(reach, dur) | |
| last_dt = dur; t += dur | |
| trace.append((t, A, d.phase, d.edges)) | |
| return trace | |
| print("\nsetpoint sweep (want edges>3, cycling, no stall):") | |
| stalled_any = False | |
| for spnt in (0.45, 0.55, 0.65, 0.75): | |
| tr = closed_loop(spnt) | |
| longest = cur = 0.0 | |
| prev = 0.0 | |
| for (t, A, ph, e) in tr: | |
| cur = cur + (t - prev) if ph == "brake" else 0.0 | |
| longest = max(longest, cur); prev = t | |
| edges = tr[-1][3] | |
| stalled = longest > 180.0 | |
| stalled_any |= stalled | |
| print(f" setpoint={spnt:.2f}: edges={edges:2d} longest_brake={longest:3.0f}s" | |
| + (" STALLED" if stalled else "")) | |
| print(f"\nVERDICT: {'PASS -- safe to run live' if ok and not stalled_any else 'FAIL -- refit before going live'}") | |
| return 0 if ok and not stalled_any else 1 | |
| def cmd_report(args): | |
| try: | |
| df = pd.read_csv(args.file) | |
| except Exception as e: | |
| sys.exit(f"cannot read {args.file}: {e}") | |
| df.columns = [c.strip() for c in df.columns] | |
| if "session" in df.columns: | |
| if not args.session: | |
| sys.exit(f"combined CSV: pass --session NAME (one of: " | |
| f"{sorted(df['session'].astype(str).unique())})") | |
| df = df[df["session"].astype(str) == args.session].drop(columns=["session"]) | |
| for c in ("time_elapse", "intensity", "tired_level", "pred_arousal"): | |
| if c in df.columns: | |
| df[c] = pd.to_numeric(df[c], errors="coerce") | |
| df = df.dropna(subset=["time_elapse", "intensity"]).reset_index(drop=True) | |
| if len(df) == 0: | |
| sys.exit("no usable rows (wrong --session name, or empty file)") | |
| if not args.recompute and "pred_arousal" in df.columns and df["pred_arousal"].notna().any(): | |
| print("(scoring LOGGED predictions -- the model AT RECORD TIME; --recompute for current)") | |
| pred = df["pred_arousal"].to_numpy(dtype=float) | |
| else: | |
| print("(recomputing predictions with the current config)") | |
| cfg, _ = load_config(args.config) | |
| s = CoreStreamer(cfg["core_params"]) | |
| dur = np.clip(df["time_elapse"].to_numpy(float) * 60.0, 1e-3, None) | |
| inten = df["intensity"].to_numpy(float) | |
| pred = np.array([s.step(inten[i], dur[i])[0] for i in range(len(df))]) | |
| dur = np.clip(df["time_elapse"].to_numpy(float) * 60.0, 1e-3, None) | |
| t_s = np.cumsum(dur) | |
| lab = df["tired_level"].to_numpy(float) if "tired_level" in df.columns else np.full(len(df), np.nan) | |
| pidx = np.where(~np.isnan(lab))[0] | |
| print(f"rows={len(df)} length={t_s[-1]/60:.1f}min presses={len(pidx)}") | |
| if len(pidx) == 0: | |
| print("no labels to score against."); return | |
| mae, tau = press_metrics(pidx, lab[pidx], pred) | |
| print(f"overall press-MAE = {mae} Kendall tau = {tau} " | |
| f"peak_pred={pred.max():.2f} peak_label={lab[pidx].max():.2f}") | |
| err = np.abs(pred[pidx] - lab[pidx]) | |
| for lo_b, hi_b, name in [(0.0, 0.4, "low 0.0-0.4"), (0.4, 0.7, "mid 0.4-0.7"), (0.7, 1.01, "TOP 0.7-1.0")]: | |
| m = (lab[pidx] >= lo_b) & (lab[pidx] < hi_b) | |
| print(f" {name}: n={m.sum():3d}" + (f" MAE={err[m].mean():.3f}" if m.any() else "")) | |
| if "phase" in df.columns: | |
| ph = df["phase"].astype(str).to_numpy() | |
| i = 0 | |
| while i < len(ph): | |
| if ph[i] == "brake": | |
| j = i | |
| while j < len(ph) and ph[j] == "brake": | |
| j += 1 | |
| print(f" brake {t_s[i]:.0f}-{t_s[j-1]:.0f}s: pred {pred[i]:.2f}->{pred[j-1]:.2f}") | |
| i = j | |
| else: | |
| i += 1 | |
| def cmd_live(args): | |
| """The live loop: Director (or random) drives the toy, the streamer runs pure | |
| inference, your 0-9 presses are logged as ground truth only, everything lands in a | |
| per-session timestamped CSV + state persists across sessions.""" | |
| import asyncio | |
| import csv | |
| import random | |
| try: | |
| import keyboard | |
| except Exception: | |
| keyboard = None | |
| print("WARNING: 'keyboard' package unavailable -- labels and q-to-quit are DISABLED; " | |
| "the recording is kept regardless, stop with Ctrl-C.") | |
| from buttplug.client import ButtplugClient, ButtplugClientWebsocketConnector | |
| cfg, cfg_hash = load_config(args.config) | |
| theta = cfg.get("alarm_theta", 0.8) | |
| streamer = CoreStreamer(cfg["core_params"], theta=theta) | |
| setpoint = args.setpoint if args.setpoint is not None else round(theta - 0.15, 3) | |
| low = args.low if args.low is not None else max(0.30, round(setpoint - 0.15, 3)) | |
| band = setpoint - low | |
| finish_after = args.finish_after if args.mode == "finish" else None | |
| director = Director(setpoint=setpoint, band=band, finish_after=finish_after) | |
| os.makedirs(args.out_dir, exist_ok=True) | |
| logf = open(os.path.join(args.out_dir, "live.log"), "a") | |
| def log(msg): | |
| logf.write(f"[{time.strftime('%H:%M:%S')}] {msg}\n"); logf.flush() | |
| state_path = os.path.join(args.out_dir, "state.json") | |
| try: # restore learned/slow state, bridged over the gap | |
| with open(state_path) as f: | |
| st = json.load(f) | |
| gap = max(0.0, time.time() - st.get("ts", 0.0)) | |
| director.gain = float(st.get("gain", 1.0)) | |
| director.L = float(st.get("L", 0.0)) * math.exp(-0.001 * gap) | |
| streamer.H = float(st.get("H", 0.0)) * math.exp(-streamer.dH * gap) | |
| log(f"STATE restored (gap={gap/3600:.1f}h): gain={director.gain:.2f} L={director.L:.3f}") | |
| except FileNotFoundError: | |
| log("STATE none (first session)") | |
| except Exception as e: | |
| log(f"STATE load failed: {e}") | |
| log(f"START mode={args.mode} setpoint={setpoint} band={band:.2f} shield={args.shield} " | |
| f"finish_after={finish_after} config={cfg_hash}") | |
| print(f"mode={args.mode} setpoint={setpoint} shield={args.shield} band={band:.2f}") | |
| def read_key_level(): | |
| if keyboard is None: | |
| return None, False, False | |
| try: | |
| if keyboard.is_pressed("q"): | |
| return None, False, True | |
| for i in range(10): | |
| if keyboard.is_pressed(str(i)): | |
| return i / 9.0, (i == 9), False | |
| except Exception: | |
| pass | |
| return None, False, False | |
| def bar(x, n=22): | |
| fill = int(round(min(max(x, 0), 1) * n)) | |
| return "[" + "#" * fill + "-" * (n - fill) + "]" | |
| async def setup_device(): | |
| log(f"connecting to Intiface at {args.intiface} ...") | |
| print(f"connecting to {args.intiface} ...") | |
| connector = ButtplugClientWebsocketConnector(args.intiface) | |
| client = ButtplugClient("CumPredict Live") | |
| await client.connect(connector) | |
| print("connected; scanning... power the toy on whenever (up to 90s)") | |
| await client.start_scanning() | |
| waited = 0.0 | |
| while waited < 90.0 and not client.devices: | |
| await asyncio.sleep(2.0) | |
| waited += 2.0 | |
| await client.stop_scanning() | |
| log(f"scan done after {waited:.0f}s: {[d.name for d in client.devices.values()]}") | |
| if not client.devices: | |
| try: | |
| await client.disconnect() # don't leak this client on a failed (re)connect | |
| except Exception: | |
| pass | |
| raise RuntimeError("No device found. Is Intiface running and the toy powered on?") | |
| return client, list(client.devices.values())[0] | |
| stroke_up = [False] | |
| async def command_stroke(device, level, duration): | |
| """Alternate base(0.0) <-> reach(=level) so `level` = stroke DEPTH and the device | |
| always returns to base -> real full strokes. One failed BLE command is retried, | |
| never fatal. Returns the commanded position, or None if the link is dead.""" | |
| msgs = getattr(device, "allowed_messages", {}) | |
| for attempt in (1, 2): | |
| try: | |
| # 5s timeout so a wedged-but-connected Intiface becomes a failure (-> reconnect), | |
| # never an indefinite hang of the whole loop. | |
| if "LinearCmd" in msgs: | |
| target = min(1.0, max(0.0, float(level) if stroke_up[0] else 0.0)) | |
| stroke_up[0] = not stroke_up[0] | |
| await asyncio.wait_for( | |
| device.send_linear_cmd((int(max(duration, 0.05) * 1000), target)), 5.0) | |
| return target | |
| if "VibrateCmd" in msgs: | |
| await asyncio.wait_for(device.send_vibrate_cmd(float(level)), 5.0) | |
| elif "RotateCmd" in msgs: | |
| await asyncio.wait_for(device.send_rotate_cmd((float(level), True)), 5.0) | |
| return float(level) | |
| except Exception as e: # includes asyncio.TimeoutError | |
| log(f"COMMAND ERROR ({attempt}/2): {type(e).__name__}: {e}") | |
| if attempt == 1: | |
| await asyncio.sleep(0.3) | |
| return None | |
| async def safe_stop(device): | |
| try: | |
| await device.send_stop_device_cmd() | |
| except Exception: | |
| pass | |
| async def main_loop(): | |
| try: | |
| client, device = await setup_device() | |
| except Exception as e: | |
| import traceback | |
| log(f"SETUP ERROR: {type(e).__name__}: {e}\n{traceback.format_exc()}") | |
| sys.exit(f"SETUP ERROR: {e} (is Intiface Central running at {args.intiface}?)") | |
| print(f"device: {device.name} capabilities: {list(getattr(device, 'allowed_messages', {}))}") | |
| out_csv = os.path.join(args.record_dir, "LIVE_" + time.strftime("%Y%m%d_%H%M%S") + ".csv") | |
| os.makedirs(args.record_dir, exist_ok=True) | |
| f = open(out_csv, "w", newline="") | |
| writer = csv.writer(f) | |
| writer.writerow(["time_elapse", "intensity", "tired_level", "pred_arousal", "phase", | |
| "E", "H", "L", "gain", "eff_hi", "alarm", "shield", "cmd_pos", "wall_dt"]) | |
| print("\n--- your 0-9 = ground-truth only (never drives anything). q = quit ---\n") | |
| last_label, err_sum, err_n, t0, last_hb = "--", 0.0, 0, time.time(), 0.0 | |
| max_label = -1.0 | |
| arousal_prev, last_dt, prev_edges = 0.0, 0.20, 0 | |
| shield_active = False | |
| consec_fail = 0 | |
| driven = args.mode in ("edge", "finish") | |
| try: | |
| while True: | |
| if driven: | |
| intensity, duration = director.step(arousal_prev, last_dt) | |
| finishing = director.phase == "finish" # in finish mode climax is the goal | |
| else: | |
| intensity, duration = round(random.uniform(0, 1), 2), random.uniform(0.15, 0.80) | |
| finishing = False | |
| # SAFETY SHIELD (all modes except finish): hard-brake above threshold, outside the | |
| # policy -- applies to random data-collection too, not just the Director modes. | |
| if finishing: | |
| shield_active = False | |
| else: | |
| if arousal_prev >= args.shield: | |
| shield_active = True | |
| if shield_active: | |
| intensity, duration = min(intensity, 0.08), max(duration, 1.2) | |
| if arousal_prev < setpoint - band: | |
| shield_active = False | |
| ramp = time.time() - t0 # 60s ramp-in (all modes): never slam cold | |
| if ramp < 60.0: | |
| intensity = min(intensity, 0.30 + 0.60 * ramp / 60.0) | |
| t_stroke = time.time() | |
| cmd_pos = await command_stroke(device, intensity, duration) | |
| if cmd_pos is None: # link died -> reconnect, resume in place | |
| consec_fail += 1 | |
| if consec_fail >= 2: | |
| log("CONNECTION LOST -- auto-reconnecting (state preserved)...") | |
| print("\n toy disconnected -- reconnecting...") | |
| try: | |
| try: | |
| await client.disconnect() | |
| except Exception: | |
| pass | |
| client, device = await setup_device() | |
| consec_fail = 0 | |
| log("RECONNECTED -- resuming where we left off") | |
| except Exception as e: | |
| log(f"RECONNECT FAILED: {e}; retrying in 3s") | |
| await asyncio.sleep(3.0) | |
| # advance the model by the ACTUAL outage time (reconnect/scan can take up to | |
| # ~90s), not one stroke duration, so predicted arousal decays with the real body | |
| outage = max(time.time() - t_stroke, duration) | |
| arousal_prev, _ = streamer.step(0.0, outage) | |
| last_dt = duration | |
| continue | |
| consec_fail = 0 | |
| label, is_cum, quit_flag = None, False, False | |
| while time.time() - t_stroke < duration: | |
| lv, cf, qf = read_key_level() | |
| if lv is not None: | |
| label, is_cum = lv, cf | |
| if qf: | |
| quit_flag = True; break | |
| await asyncio.sleep(0.005) | |
| wall_dt = time.time() - t_stroke | |
| if quit_flag: | |
| log("QUIT (q pressed by user)") | |
| break | |
| arousal, alarm = streamer.step(intensity, duration) # pure inference | |
| arousal_prev, last_dt = arousal, duration | |
| if driven and director.edges > prev_edges: | |
| prev_edges = director.edges | |
| log(f"EDGE #{director.edges} brake@pred={arousal:.2f} L={director.L:.2f} gain={director.gain:.2f}") | |
| if finish_after is not None and director.edges >= finish_after: | |
| log("FINISH PHASE ENGAGED -- no more braking") | |
| if label is not None: | |
| last_label = f"{label:.2f}" | |
| max_label = max(max_label, label) | |
| err_sum += abs(arousal - label); err_n += 1 | |
| log(f"YOU={label:.2f} PRED={arousal:.2f} |err|={abs(arousal-label):.2f} phase={director.phase}") | |
| if is_cum: | |
| log(f"*** CUM (pressed 9) at PRED={arousal:.2f} edges={director.edges} " | |
| f"L={director.L:.2f} -- model NOT reset (pure inference) ***") | |
| writer.writerow([duration / 60.0, intensity, "" if label is None else f"{label:.2f}", | |
| round(arousal, 4), director.phase if driven else "random", | |
| round(streamer.E, 4), round(streamer.H, 4), round(director.L, 4), | |
| round(director.gain, 3), round(director.hi, 4), int(alarm), | |
| int(shield_active), round(cmd_pos, 3), round(wall_dt, 4)]) | |
| f.flush() | |
| mae = (err_sum / err_n) if err_n else None | |
| maes = f"MAE {mae:.2f}" if mae is not None else "MAE --" | |
| extra = (f"{director.phase.upper():6s} e{director.edges} L{director.L:.1f}" | |
| if driven else "RND") | |
| print(f"\r INFER {bar(arousal)} {arousal:0.2f} | YOU {last_label} | {maes} | {extra}" | |
| + (" !ALARM" if alarm else "") + " ", end="", flush=True) | |
| if time.time() - last_hb > 8: | |
| log(f"HB t={int(time.time()-t0)}s pred={arousal:.2f} phase={director.phase} " | |
| f"edges={director.edges} L={director.L:.2f} gain={director.gain:.2f}") | |
| last_hb = time.time() | |
| except KeyboardInterrupt: | |
| log("QUIT (Ctrl-C)") | |
| except Exception as e: | |
| import traceback | |
| log(f"LOOP CRASH: {type(e).__name__}: {e}\n{traceback.format_exc()}") | |
| print(f"\nLOOP CRASH: {e}") | |
| raise | |
| finally: | |
| await safe_stop(device) | |
| log(f"STOP edges={director.edges} L={director.L:.2f} gain={director.gain:.2f} " | |
| f"labeled={err_n} maxlabel={max_label:.2f}") | |
| try: | |
| with open(state_path, "w") as sf: | |
| json.dump({"ts": time.time(), "gain": director.gain, "L": director.L, | |
| "H": streamer.H, "edges": director.edges, "setpoint": setpoint}, sf, indent=2) | |
| except Exception as e: | |
| log(f"STATE save failed: {e}") | |
| f.close() | |
| # auto-delete only when labeling was POSSIBLE but unused (no label above 0); never | |
| # delete when the keyboard hook was unavailable -- the labels couldn't be captured. | |
| if max_label <= 0.0 and keyboard is not None: | |
| try: | |
| os.remove(out_csv) | |
| except Exception: | |
| pass | |
| print(f"\ndeleted garbage recording (no labels above 0): {os.path.basename(out_csv)}") | |
| else: | |
| print(f"\nsaved recording -> {os.path.abspath(out_csv)}") | |
| logf.close() | |
| try: | |
| await client.disconnect() | |
| except Exception: | |
| pass | |
| asyncio.run(main_loop()) | |
| # ------------------------------------------------------------------------------------ main | |
| def main(): | |
| common = argparse.ArgumentParser(add_help=False) # shared flags, valid AFTER the subcommand | |
| common.add_argument("--data", default="sessions.csv", | |
| help="combined CSV (session,time_elapse,intensity,tired_level) or a directory of CSVs") | |
| common.add_argument("--config", default="artifacts/config_core.json", help="model file to write/read") | |
| common.add_argument("--out-dir", default="artifacts") | |
| common.add_argument("--shield", type=float, default=0.78, | |
| help="hard-brake arousal threshold (outside the policy; also the exported alarm theta)") | |
| ap = argparse.ArgumentParser(description="live arousal prediction + inference-driven edging") | |
| sub = ap.add_subparsers(dest="cmd", required=True) | |
| sub.add_parser("train", parents=[common], help="fit + LOSO eval, write the model") | |
| sub.add_parser("fit", parents=[common], help="fit-only rerun of the model") | |
| sub.add_parser("parity", parents=[common], help="streaming-vs-batch exactness test") | |
| sub.add_parser("sim", parents=[common], help="offline brake test + Director cycling check") | |
| rp = sub.add_parser("report", parents=[common], help="score one session recording") | |
| rp.add_argument("--file", required=True) | |
| rp.add_argument("--session", help="session name when --file is a combined CSV") | |
| rp.add_argument("--recompute", action="store_true", | |
| help="ignore logged predictions; re-run the current model") | |
| lv = sub.add_parser("live", parents=[common], help="drive the toy (needs Intiface + buttplug-py + keyboard)") | |
| lv.add_argument("--mode", choices=["edge", "finish", "random"], default="finish") | |
| lv.add_argument("--setpoint", type=float, default=0.65, help="edge target 0..1") | |
| lv.add_argument("--low", type=float, default=0.45, help="rebuild threshold 0..1") | |
| lv.add_argument("--finish-after", type=int, default=5, help="finish mode: edges before climax drive") | |
| lv.add_argument("--record-dir", default="recordings") | |
| lv.add_argument("--intiface", default="ws://127.0.0.1:12345") | |
| args = ap.parse_args() | |
| rc = {"train": cmd_train, "fit": cmd_fit, "parity": cmd_parity, | |
| "sim": cmd_sim, "report": cmd_report, "live": cmd_live}[args.cmd](args) | |
| sys.exit(rc or 0) | |
| if __name__ == "__main__": | |
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| session | time_elapse | intensity | tired_level | |
|---|---|---|---|---|
| LIVE_20260723_012001 | 0.005183333333333333 | 0.3 | ||
| LIVE_20260723_012001 | 0.0057 | 0.3031380844116211 | ||
| LIVE_20260723_012001 | 0.0058 | 0.3066180992126465 | ||
| LIVE_20260723_012001 | 0.005383333333333334 | 0.31013160467147827 | ||
| LIVE_20260723_012001 | 0.004699999999999999 | 0.3134372115135193 | ||
| LIVE_20260723_012001 | 0.0041 | 0.3162695264816284 | ||
| LIVE_20260723_012001 | 0.003766666666666667 | 0.3187796378135681 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.32118735551834104 | ||
| LIVE_20260723_012001 | 0.003816666666666667 | 0.32339584350585937 | ||
| LIVE_20260723_012001 | 0.004166666666666667 | 0.32579670906066893 | ||
| LIVE_20260723_012001 | 0.004699999999999999 | 0.3284367275238037 | ||
| LIVE_20260723_012001 | 0.005316666666666667 | 0.3312822866439819 | ||
| LIVE_20260723_012001 | 0.0057666666666666665 | 0.33457931756973264 | ||
| LIVE_20260723_012001 | 0.0057666666666666665 | 0.33819784879684445 | ||
| LIVE_20260723_012001 | 0.00525 | 0.3416714024543762 | ||
| LIVE_20260723_012001 | 0.00455 | 0.34482709646224974 | ||
| LIVE_20260723_012001 | 0.004016666666666667 | 0.3476601433753967 | ||
| LIVE_20260723_012001 | 0.0037166666666666667 | 0.3502007031440735 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.3525861406326294 | ||
| LIVE_20260723_012001 | 0.0038666666666666667 | 0.3548018598556518 | ||
| LIVE_20260723_012001 | 0.00425 | 0.3571915650367737 | ||
| LIVE_20260723_012001 | 0.004816666666666666 | 0.3598787975311279 | ||
| LIVE_20260723_012001 | 0.005416666666666667 | 0.362891366481781 | ||
| LIVE_20260723_012001 | 0.0058 | 0.3662513160705566 | 0.00 | |
| LIVE_20260723_012001 | 0.0057 | 0.3697409272193909 | 0.00 | |
| LIVE_20260723_012001 | 0.005116666666666667 | 0.37318979024887083 | ||
| LIVE_20260723_012001 | 0.004433333333333333 | 0.37638800859451294 | ||
| LIVE_20260723_012001 | 0.003933333333333333 | 0.3790870141983032 | ||
| LIVE_20260723_012001 | 0.0037 | 0.38145847797393795 | ||
| LIVE_20260723_012001 | 0.0037 | 0.38382956981658933 | ||
| LIVE_20260723_012001 | 0.003933333333333333 | 0.3861834168434143 | ||
| LIVE_20260723_012001 | 0.004350000000000001 | 0.38856846332550043 | ||
| LIVE_20260723_012001 | 0.004933333333333333 | 0.3912765383720398 | ||
| LIVE_20260723_012001 | 0.005516666666666667 | 0.3942690849304199 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.39758068084716797 | ||
| LIVE_20260723_012001 | 0.005616666666666667 | 0.4011985087394714 | ||
| LIVE_20260723_012001 | 0.0049833333333333335 | 0.40469010829925534 | ||
| LIVE_20260723_012001 | 0.004316666666666667 | 0.40771420478820797 | ||
| LIVE_20260723_012001 | 0.0038666666666666667 | 0.4103993391990661 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.4127822947502136 | ||
| LIVE_20260723_012001 | 0.0037333333333333333 | 0.41513863086700437 | ||
| LIVE_20260723_012001 | 0.004 | 0.41750809669494626 | ||
| LIVE_20260723_012001 | 0.0044666666666666665 | 0.42002364873886106 | ||
| LIVE_20260723_012001 | 0.005066666666666666 | 0.42270866394042966 | ||
| LIVE_20260723_012001 | 0.005616666666666667 | 0.4258784556388855 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.4293673586845398 | ||
| LIVE_20260723_012001 | 0.0055000000000000005 | 0.43299415349960324 | ||
| LIVE_20260723_012001 | 0.004833333333333333 | 0.4364492392539978 | ||
| LIVE_20260723_012001 | 0.0042 | 0.43947955608367917 | ||
| LIVE_20260723_012001 | 0.0038 | 0.44200830459594725 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.44438997983932493 | ||
| LIVE_20260723_012001 | 0.003766666666666667 | 0.4467266535758972 | ||
| LIVE_20260723_012001 | 0.004066666666666666 | 0.44908096790313723 | ||
| LIVE_20260723_012001 | 0.004566666666666667 | 0.45160108089447015 | ||
| LIVE_20260723_012001 | 0.005183333333333333 | 0.4544462966918945 | ||
| LIVE_20260723_012001 | 0.0057 | 0.45763515949249267 | ||
| LIVE_20260723_012001 | 0.005816666666666666 | 0.4611297464370727 | ||
| LIVE_20260723_012001 | 0.005383333333333334 | 0.4647691416740417 | ||
| LIVE_20260723_012001 | 0.004699999999999999 | 0.468065550327301 | ||
| LIVE_20260723_012001 | 0.0041 | 0.4709081792831421 | ||
| LIVE_20260723_012001 | 0.003766666666666667 | 0.47344584703445436 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.4758288741111755 | ||
| LIVE_20260723_012001 | 0.0038 | 0.47818185329437257 | ||
| LIVE_20260723_012001 | 0.00415 | 0.48056477308273315 | ||
| LIVE_20260723_012001 | 0.004683333333333334 | 0.48310683727264403 | ||
| LIVE_20260723_012001 | 0.0053 | 0.4859631061553955 | ||
| LIVE_20260723_012001 | 0.00575 | 0.4892413663864136 | ||
| LIVE_20260723_012001 | 0.0057666666666666665 | 0.49271843910217283 | ||
| LIVE_20260723_012001 | 0.005266666666666667 | 0.4962276268005371 | ||
| LIVE_20260723_012001 | 0.004566666666666667 | 0.4995259356498718 | ||
| LIVE_20260723_012001 | 0.004016666666666667 | 0.5023684167861938 | ||
| LIVE_20260723_012001 | 0.0037166666666666667 | 0.504902229309082 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.5072906470298767 | ||
| LIVE_20260723_012001 | 0.00385 | 0.5095303750038147 | ||
| LIVE_20260723_012001 | 0.00425 | 0.5118940210342406 | ||
| LIVE_20260723_012001 | 0.0048 | 0.5145651578903199 | ||
| LIVE_20260723_012001 | 0.0054 | 0.5175457191467285 | ||
| LIVE_20260723_012001 | 0.0058 | 0.5208284783363342 | ||
| LIVE_20260723_012001 | 0.0057 | 0.5244638228416443 | ||
| LIVE_20260723_012001 | 0.0051333333333333335 | 0.5279619336128235 | ||
| LIVE_20260723_012001 | 0.00445 | 0.531102466583252 | ||
| LIVE_20260723_012001 | 0.0039499999999999995 | 0.5337897992134094 | ||
| LIVE_20260723_012001 | 0.0037 | 0.5361655092239379 | ||
| LIVE_20260723_012001 | 0.0037 | 0.538393120765686 | ||
| LIVE_20260723_012001 | 0.003916666666666666 | 0.5407437229156493 | ||
| LIVE_20260723_012001 | 0.004350000000000001 | 0.5431145238876343 | ||
| LIVE_20260723_012001 | 0.004916666666666666 | 0.545796024799347 | ||
| LIVE_20260723_012001 | 0.005516666666666667 | 0.5487964940071106 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.5522549605369568 | ||
| LIVE_20260723_012001 | 0.005616666666666667 | 0.5558851170539856 | ||
| LIVE_20260723_012001 | 0.005 | 0.5594032597541809 | ||
| LIVE_20260723_012001 | 0.004333333333333333 | 0.5624274659156798 | ||
| LIVE_20260723_012001 | 0.0038666666666666667 | 0.565083634853363 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.5674926519393921 | ||
| LIVE_20260723_012001 | 0.0037166666666666667 | 0.569854564666748 | ||
| LIVE_20260723_012001 | 0.0039833333333333335 | 0.5720907592773437 | ||
| LIVE_20260723_012001 | 0.00445 | 0.574485146999359 | ||
| LIVE_20260723_012001 | 0.00505 | 0.5771986365318298 | ||
| LIVE_20260723_012001 | 0.0056 | 0.5803516507148743 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.5838165593147278 | ||
| LIVE_20260723_012001 | 0.005516666666666667 | 0.5873185467720031 | ||
| LIVE_20260723_012001 | 0.004866666666666667 | 0.5907541155815124 | ||
| LIVE_20260723_012001 | 0.004216666666666666 | 0.5937681341171264 | ||
| LIVE_20260723_012001 | 0.003816666666666667 | 0.5964503765106202 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.598827269077301 | ||
| LIVE_20260723_012001 | 0.0037500000000000003 | 0.596 | ||
| LIVE_20260723_012001 | 0.004066666666666666 | 0.603431966304779 | ||
| LIVE_20260723_012001 | 0.00455 | 0.6059415578842162 | 0.11 | |
| LIVE_20260723_012001 | 0.005166666666666667 | 0.6087857890129089 | 0.11 | |
| LIVE_20260723_012001 | 0.005683333333333334 | 0.6119615650177002 | ||
| LIVE_20260723_012001 | 0.005816666666666666 | 0.6154040074348449 | ||
| LIVE_20260723_012001 | 0.005416666666666667 | 0.619037492275238 | ||
| LIVE_20260723_012001 | 0.004716666666666666 | 0.615 | ||
| LIVE_20260723_012001 | 0.004116666666666667 | 0.596 | ||
| LIVE_20260723_012001 | 0.003766666666666667 | 0.6 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.619 | ||
| LIVE_20260723_012001 | 0.0038 | 0.6325272750854491 | ||
| LIVE_20260723_012001 | 0.00415 | 0.6349211621284485 | ||
| LIVE_20260723_012001 | 0.004666666666666667 | 0.6374448204040527 | ||
| LIVE_20260723_012001 | 0.0052833333333333335 | 0.6402708411216735 | ||
| LIVE_20260723_012001 | 0.00575 | 0.6434807896614074 | ||
| LIVE_20260723_012001 | 0.0057666666666666665 | 0.627 | ||
| LIVE_20260723_012001 | 0.0052833333333333335 | 0.597 | ||
| LIVE_20260723_012001 | 0.004583333333333333 | 0.601 | ||
| LIVE_20260723_012001 | 0.004033333333333333 | 0.628 | ||
| LIVE_20260723_012001 | 0.0037333333333333333 | 0.659 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.6615476417541504 | ||
| LIVE_20260723_012001 | 0.00385 | 0.6637913537025452 | ||
| LIVE_20260723_012001 | 0.004233333333333334 | 0.6661944842338561 | ||
| LIVE_20260723_012001 | 0.004783333333333333 | 0.6687641644477844 | ||
| LIVE_20260723_012001 | 0.0054 | 0.64 | ||
| LIVE_20260723_012001 | 0.0058 | 0.605 | ||
| LIVE_20260723_012001 | 0.005716666666666667 | 0.597 | ||
| LIVE_20260723_012001 | 0.00515 | 0.625 | ||
| LIVE_20260723_012001 | 0.0044666666666666665 | 0.664 | ||
| LIVE_20260723_012001 | 0.0039499999999999995 | 0.6879573822021484 | ||
| LIVE_20260723_012001 | 0.0037 | 0.6904727935791015 | ||
| LIVE_20260723_012001 | 0.0037 | 0.691 | ||
| LIVE_20260723_012001 | 0.003916666666666666 | 0.669 | ||
| LIVE_20260723_012001 | 0.004333333333333333 | 0.639 | ||
| LIVE_20260723_012001 | 0.004916666666666666 | 0.609 | ||
| LIVE_20260723_012001 | 0.0055000000000000005 | 0.595 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.611 | ||
| LIVE_20260723_012001 | 0.005633333333333334 | 0.654 | ||
| LIVE_20260723_012001 | 0.005 | 0.691 | ||
| LIVE_20260723_012001 | 0.004333333333333333 | 0.699 | ||
| LIVE_20260723_012001 | 0.0038833333333333337 | 0.684 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.657 | ||
| LIVE_20260723_012001 | 0.0037166666666666667 | 0.628 | ||
| LIVE_20260723_012001 | 0.0039833333333333335 | 0.605 | ||
| LIVE_20260723_012001 | 0.004433333333333333 | 0.594 | ||
| LIVE_20260723_012001 | 0.005033333333333333 | 0.601 | ||
| LIVE_20260723_012001 | 0.0056 | 0.63 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.666 | ||
| LIVE_20260723_012001 | 0.005533333333333334 | 0.681 | ||
| LIVE_20260723_012001 | 0.004866666666666667 | 0.66 | ||
| LIVE_20260723_012001 | 0.004233333333333334 | 0.622 | ||
| LIVE_20260723_012001 | 0.003816666666666667 | 0.589 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.568 | ||
| LIVE_20260723_012001 | 0.0037500000000000003 | 0.563 | ||
| LIVE_20260723_012001 | 0.00405 | 0.572 | ||
| LIVE_20260723_012001 | 0.00455 | 0.595 | ||
| LIVE_20260723_012001 | 0.00515 | 0.624 | ||
| LIVE_20260723_012001 | 0.005683333333333334 | 0.644 | ||
| LIVE_20260723_012001 | 0.005816666666666666 | 0.635 | ||
| LIVE_20260723_012001 | 0.005416666666666667 | 0.597 | ||
| LIVE_20260723_012001 | 0.004733333333333333 | 0.556 | ||
| LIVE_20260723_012001 | 0.0041333333333333335 | 0.535 | ||
| LIVE_20260723_012001 | 0.003766666666666667 | 0.535 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.549 | ||
| LIVE_20260723_012001 | 0.0038 | 0.57 | ||
| LIVE_20260723_012001 | 0.0041333333333333335 | 0.593 | ||
| LIVE_20260723_012001 | 0.004666666666666667 | 0.608 | ||
| LIVE_20260723_012001 | 0.0052833333333333335 | 0.606 | ||
| LIVE_20260723_012001 | 0.00575 | 0.579 | ||
| LIVE_20260723_012001 | 0.005783333333333333 | 0.537 | ||
| LIVE_20260723_012001 | 0.0052833333333333335 | 0.508 | ||
| LIVE_20260723_012001 | 0.004600000000000001 | 0.507 | ||
| LIVE_20260723_012001 | 0.004033333333333333 | 0.526 | ||
| LIVE_20260723_012001 | 0.0037333333333333333 | 0.55 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.568 | ||
| LIVE_20260723_012001 | 0.00385 | 0.577 | ||
| LIVE_20260723_012001 | 0.004233333333333334 | 0.573 | ||
| LIVE_20260723_012001 | 0.004783333333333333 | 0.553 | ||
| LIVE_20260723_012001 | 0.0054 | 0.521 | ||
| LIVE_20260723_012001 | 0.0058 | 0.488 | ||
| LIVE_20260723_012001 | 0.005716666666666667 | 0.478 | ||
| LIVE_20260723_012001 | 0.00515 | 0.497 | ||
| LIVE_20260723_012001 | 0.0044666666666666665 | 0.525 | ||
| LIVE_20260723_012001 | 0.0039499999999999995 | 0.544 | ||
| LIVE_20260723_012001 | 0.0037 | 0.548 | ||
| LIVE_20260723_012001 | 0.0037 | 0.539 | ||
| LIVE_20260723_012001 | 0.003916666666666666 | 0.519 | ||
| LIVE_20260723_012001 | 0.004333333333333333 | 0.493 | ||
| LIVE_20260723_012001 | 0.004916666666666666 | 0.468 | ||
| LIVE_20260723_012001 | 0.0055000000000000005 | 0.454 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.463 | ||
| LIVE_20260723_012001 | 0.005633333333333334 | 0.492 | 0.22 | |
| LIVE_20260723_012001 | 0.005016666666666667 | 0.516 | 0.22 | |
| LIVE_20260723_012001 | 0.004333333333333333 | 0.52 | ||
| LIVE_20260723_012001 | 0.0038833333333333337 | 0.506 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.483 | ||
| LIVE_20260723_012001 | 0.0037166666666666667 | 0.46 | ||
| LIVE_20260723_012001 | 0.0039833333333333335 | 0.442 | ||
| LIVE_20260723_012001 | 0.004433333333333333 | 0.432 | ||
| LIVE_20260723_012001 | 0.005033333333333333 | 0.437 | ||
| LIVE_20260723_012001 | 0.0056 | 0.459 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.486 | ||
| LIVE_20260723_012001 | 0.005533333333333334 | 0.497 | ||
| LIVE_20260723_012001 | 0.004866666666666667 | 0.482 | ||
| LIVE_20260723_012001 | 0.004233333333333334 | 0.455 | ||
| LIVE_20260723_012001 | 0.003816666666666667 | 0.431 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.417 | ||
| LIVE_20260723_012001 | 0.0037500000000000003 | 0.413 | ||
| LIVE_20260723_012001 | 0.00405 | 0.42 | ||
| LIVE_20260723_012001 | 0.00455 | 0.437 | ||
| LIVE_20260723_012001 | 0.00515 | 0.459 | ||
| LIVE_20260723_012001 | 0.005683333333333334 | 0.474 | ||
| LIVE_20260723_012001 | 0.005816666666666666 | 0.469 | ||
| LIVE_20260723_012001 | 0.005416666666666667 | 0.442 | ||
| LIVE_20260723_012001 | 0.004733333333333333 | 0.412 | ||
| LIVE_20260723_012001 | 0.0041333333333333335 | 0.397 | ||
| LIVE_20260723_012001 | 0.003766666666666667 | 0.398 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.409 | ||
| LIVE_20260723_012001 | 0.0038 | 0.425 | ||
| LIVE_20260723_012001 | 0.0041333333333333335 | 0.443 | ||
| LIVE_20260723_012001 | 0.004666666666666667 | 0.455 | ||
| LIVE_20260723_012001 | 0.005266666666666667 | 0.454 | ||
| LIVE_20260723_012001 | 0.00575 | 0.435 | ||
| LIVE_20260723_012001 | 0.005783333333333333 | 0.405 | ||
| LIVE_20260723_012001 | 0.0053 | 0.383 | ||
| LIVE_20260723_012001 | 0.004600000000000001 | 0.384 | ||
| LIVE_20260723_012001 | 0.004033333333333333 | 0.399 | ||
| LIVE_20260723_012001 | 0.0037333333333333333 | 0.417 | ||
| LIVE_20260723_012001 | 0.0036666666666666666 | 0.432 | ||
| LIVE_20260723_012001 | 0.00385 | 0.44 | ||
| LIVE_20260723_012001 | 0.004233333333333334 | 0.438 | ||
| LIVE_20260723_012001 | 0.004783333333333333 | 0.423 | ||
| LIVE_20260723_012001 | 0.005383333333333334 | 0.399 | ||
| LIVE_20260723_012001 | 0.0058 | 0.375 | ||
| LIVE_20260723_012001 | 0.005716666666666667 | 0.368 | ||
| LIVE_20260723_012001 | 0.005166666666666667 | 0.384 | ||
| LIVE_20260723_012001 | 0.0044666666666666665 | 0.407 | ||
| LIVE_20260723_012001 | 0.0039499999999999995 | 0.422 | ||
| LIVE_20260723_012001 | 0.0037 | 0.426 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.42 | ||
| LIVE_20260723_012001 | 0.0039000000000000003 | 0.406 | ||
| LIVE_20260723_012001 | 0.004316666666666667 | 0.386 | ||
| LIVE_20260723_012001 | 0.0049 | 0.367 | ||
| LIVE_20260723_012001 | 0.005483333333333334 | 0.357 | ||
| LIVE_20260723_012001 | 0.005816666666666666 | 0.365 | ||
| LIVE_20260723_012001 | 0.0056500000000000005 | 0.388 | ||
| LIVE_20260723_012001 | 0.005033333333333333 | 0.409 | ||
| LIVE_20260723_012001 | 0.004350000000000001 | 0.414 | ||
| LIVE_20260723_012001 | 0.0038833333333333337 | 0.403 | ||
| LIVE_20260723_012001 | 0.003683333333333333 | 0.387 | ||
| LIVE_20260723_012001 | 0.0037166666666666667 | 0.369 | ||
| LIVE_20260723_012001 | 0.003966666666666666 | 0.355 | ||
| LIVE_20260723_012001 | 0.004433333333333333 | 0.347 | ||
| LIVE_20260723_012001 | 0.005016666666666667 | 0.352 | ||
| LIVE_20260723_012001 | 0.005583333333333333 | 0.37 | ||
| LIVE_20260723_012001 | 0.005833333333333333 | 0.393 | ||
| LIVE_20260723_012001 | 0.00555 | 0.404 | ||
| LIVE_20260723_012001 | 0.004883333333333333 | 0.394 | ||
| LIVE_20260723_012001 | 0.00425 | 0.373 | ||
| LIVE_20260723_012001 | 0.0038333333333333336 | 0.354 | ||
| LIVE_20260723_012001 | 0.013316666666666668 | 0.139 | ||
| LIVE_20260723_012001 | 0.01 | 0.114 | ||
| LIVE_20260723_012001 | 0.012166666666666666 | 0.13 | ||
| LIVE_20260723_012001 | 0.0176 | 0.17 | ||
| LIVE_20260723_012001 | 0.019033333333333333 | 0.181 | ||
| LIVE_20260723_012001 | 0.011216666666666668 | 0.121 | ||
| LIVE_20260723_012001 | 0.010283333333333334 | 0.114 | ||
| LIVE_20260723_012001 | 0.013716666666666665 | 0.139 | ||
| LIVE_20260723_012001 | 0.019299999999999998 | 0.18 | ||
| LIVE_20260723_012001 | 0.016433333333333335 | 0.158 | ||
| LIVE_20260723_012001 | 0.010233333333333334 | 0.112 | ||
| LIVE_20260723_012001 | 0.011033333333333334 | 0.118 | ||
| LIVE_20260723_012001 | 0.015616666666666668 | 0.151 | ||
| LIVE_20260723_012001 | 0.02 | 0.183 | ||
| LIVE_20260723_012001 | 0.01335 | 0.134 | 0.33 | |
| LIVE_20260723_012001 | 0.01 | 0.109 | ||
| LIVE_20260723_012001 | 0.012166666666666666 | 0.124 | ||
| LIVE_20260723_012001 | 0.017583333333333333 | 0.163 | ||
| LIVE_20260723_012001 | 0.019033333333333333 | 0.173 | ||
| LIVE_20260723_012001 | 0.011233333333333335 | 0.116 | ||
| LIVE_20260723_012001 | 0.010283333333333334 | 0.109 | ||
| LIVE_20260723_012001 | 0.013716666666666665 | 0.134 | ||
| LIVE_20260723_012001 | 0.019299999999999998 | 0.173 | ||
| LIVE_20260723_012001 | 0.016433333333333335 | 0.152 | ||
| LIVE_20260723_012001 | 0.01025 | 0.108 | ||
| LIVE_20260723_012001 | 0.011033333333333334 | 0.113 | ||
| LIVE_20260723_012001 | 0.015616666666666668 | 0.145 | ||
| LIVE_20260723_012001 | 0.02 | 0.176 | ||
| LIVE_20260723_012001 | 0.01335 | 0.128 | ||
| LIVE_20260723_012001 | 0.01 | 0.105 | ||
| LIVE_20260723_012001 | 0.012166666666666666 | 0.12 | ||
| LIVE_20260723_012001 | 0.017583333333333333 | 0.157 | ||
| LIVE_20260723_012001 | 0.019033333333333333 | 0.167 | ||
| LIVE_20260723_012001 | 0.011233333333333335 | 0.112 | ||
| LIVE_20260723_012001 | 0.010283333333333334 | 0.106 | ||
| LIVE_20260723_012001 | 0.013716666666666665 | 0.129 | ||
| LIVE_20260723_012001 | 0.019299999999999998 | 0.167 | ||
| LIVE_20260723_012001 | 0.016433333333333335 | 0.147 | ||
| LIVE_20260723_012001 | 0.01025 | 0.105 | ||
| LIVE_20260723_012001 | 0.011033333333333334 | 0.11 | ||
| LIVE_20260723_012001 | 0.015616666666666668 | 0.141 | ||
| LIVE_20260723_012001 | 0.02 | 0.171 | ||
| LIVE_20260723_012001 | 0.01335 | 0.125 | ||
| LIVE_20260723_012001 | 0.01 | 0.102 | ||
| LIVE_20260723_012001 | 0.012166666666666666 | 0.117 | ||
| LIVE_20260723_012001 | 0.017583333333333333 | 0.153 | ||
| LIVE_20260723_012001 | 0.019033333333333333 | 0.163 | ||
| LIVE_20260723_012001 | 0.011233333333333335 | 0.11 | ||
| LIVE_20260723_012001 | 0.010283333333333334 | 0.103 | ||
| LIVE_20260723_012001 | 0.013716666666666665 | 0.127 | ||
| LIVE_20260723_012001 | 0.019299999999999998 | 0.164 | ||
| LIVE_20260723_012001 | 0.016433333333333335 | 0.145 | ||
| LIVE_20260723_012001 | 0.01025 | 0.103 | ||
| LIVE_20260723_012001 | 0.011033333333333334 | 0.108 | ||
| LIVE_20260723_012001 | 0.015616666666666668 | 0.139 | ||
| LIVE_20260723_012001 | 0.02 | 0.168 | 0.33 | |
| LIVE_20260723_012001 | 0.01335 | 0.123 | 0.33 | |
| LIVE_20260723_012640 | 0.0036666666666666666 | 0.3 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.30231417894363405 | ||
| LIVE_20260723_012640 | 0.00415 | 0.3047059178352356 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.3072736573219299 | ||
| LIVE_20260723_012640 | 0.0038833333333333337 | 0.3098103880882263 | ||
| LIVE_20260723_012640 | 0.003533333333333333 | 0.3122004318237305 | ||
| LIVE_20260723_012640 | 0.0031666666666666666 | 0.31442177057266235 | ||
| LIVE_20260723_012640 | 0.00285 | 0.3163555550575256 | ||
| LIVE_20260723_012640 | 0.00265 | 0.31808876514434814 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.31968174934387206 | ||
| LIVE_20260723_012640 | 0.0025 | 0.32126723527908324 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.32286972999572755 | ||
| LIVE_20260723_012640 | 0.0026833333333333336 | 0.3244586992263794 | ||
| LIVE_20260723_012640 | 0.0029 | 0.32621097087860107 | ||
| LIVE_20260723_012640 | 0.0031833333333333336 | 0.32797310590744017 | ||
| LIVE_20260723_012640 | 0.0035 | 0.32989519119262695 | ||
| LIVE_20260723_012640 | 0.0038333333333333336 | 0.33213791847229 | ||
| LIVE_20260723_012640 | 0.004083333333333333 | 0.3344785952568054 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.3370424151420593 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.33959614992141723 | ||
| LIVE_20260723_012640 | 0.0037166666666666667 | 0.3421600317955017 | ||
| LIVE_20260723_012640 | 0.0033333333333333335 | 0.3445050001144409 | ||
| LIVE_20260723_012640 | 0.003 | 0.34655033826828 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.34842830419540405 | ||
| LIVE_20260723_012640 | 0.0025833333333333333 | 0.3501615595817566 | ||
| LIVE_20260723_012640 | 0.0025 | 0.3517282724380493 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.35328730821609494 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.3548805785179138 | ||
| LIVE_20260723_012640 | 0.0027833333333333334 | 0.3564693737030029 | ||
| LIVE_20260723_012640 | 0.003033333333333333 | 0.35819803714752196 | ||
| LIVE_20260723_012640 | 0.00335 | 0.36012059688568115 | ||
| LIVE_20260723_012640 | 0.003683333333333333 | 0.3622074842453003 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.3645562148094177 | ||
| LIVE_20260723_012640 | 0.00415 | 0.3670790982246399 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.369629955291748 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.37216958999633787 | 0.00 | |
| LIVE_20260723_012640 | 0.0035166666666666666 | 0.3745579171180725 | ||
| LIVE_20260723_012640 | 0.00315 | 0.3767679357528686 | ||
| LIVE_20260723_012640 | 0.00285 | 0.3786812090873718 | ||
| LIVE_20260723_012640 | 0.00265 | 0.38043176651000976 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.38214194774627686 | ||
| LIVE_20260723_012640 | 0.0025 | 0.38371999263763423 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.3853055167198181 | ||
| LIVE_20260723_012640 | 0.0026833333333333336 | 0.3868819737434387 | ||
| LIVE_20260723_012640 | 0.0029 | 0.38860488891601563 | ||
| LIVE_20260723_012640 | 0.0031833333333333336 | 0.3903503537178039 | ||
| LIVE_20260723_012640 | 0.0035166666666666666 | 0.39239980459213253 | ||
| LIVE_20260723_012640 | 0.00385 | 0.3946154522895813 | ||
| LIVE_20260723_012640 | 0.0041 | 0.39697110414505005 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.39951846122741697 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.40203549623489376 | ||
| LIVE_20260723_012640 | 0.0037 | 0.4045531582832336 | ||
| LIVE_20260723_012640 | 0.003316666666666667 | 0.40691088676452636 | ||
| LIVE_20260723_012640 | 0.002983333333333333 | 0.4089884996414185 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.41085847377777096 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.4126253128051758 | ||
| LIVE_20260723_012640 | 0.0025 | 0.41422770738601683 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.4158329081535339 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.41741813898086544 | ||
| LIVE_20260723_012640 | 0.0027833333333333334 | 0.419147036075592 | ||
| LIVE_20260723_012640 | 0.003033333333333333 | 0.42087471723556513 | ||
| LIVE_20260723_012640 | 0.00335 | 0.4227585196495056 | ||
| LIVE_20260723_012640 | 0.003683333333333333 | 0.4248044657707214 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.4270579099655151 | ||
| LIVE_20260723_012640 | 0.00415 | 0.42957392692565916 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.43209189653396607 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.4346334028244018 | ||
| LIVE_20260723_012640 | 0.0035 | 0.43699736118316646 | ||
| LIVE_20260723_012640 | 0.00315 | 0.4392054080963135 | ||
| LIVE_20260723_012640 | 0.00285 | 0.4411181282997131 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.4428687930107117 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.4444589042663574 | ||
| LIVE_20260723_012640 | 0.0025 | 0.44603133916854854 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.44761684417724606 | ||
| LIVE_20260723_012640 | 0.0027 | 0.44917517185211175 | ||
| LIVE_20260723_012640 | 0.0029 | 0.45089834928512573 | ||
| LIVE_20260723_012640 | 0.0031833333333333336 | 0.4526442074775696 | ||
| LIVE_20260723_012640 | 0.0035166666666666666 | 0.4545653963088989 | ||
| LIVE_20260723_012640 | 0.00385 | 0.4567856407165527 | ||
| LIVE_20260723_012640 | 0.0041 | 0.45914635181427 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.4616719365119934 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.46419946670532225 | ||
| LIVE_20260723_012640 | 0.003683333333333333 | 0.46674877882003785 | ||
| LIVE_20260723_012640 | 0.003316666666666667 | 0.4689719605445861 | ||
| LIVE_20260723_012640 | 0.002983333333333333 | 0.4710500478744507 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.4729732823371887 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.47472430944442745 | ||
| LIVE_20260723_012640 | 0.0025 | 0.4762813973426818 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.4778410458564758 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.47942529201507567 | ||
| LIVE_20260723_012640 | 0.0028 | 0.48103015422821044 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.4827918291091919 | ||
| LIVE_20260723_012640 | 0.00335 | 0.4847061610221862 | ||
| LIVE_20260723_012640 | 0.0037 | 0.4867542791366577 | ||
| LIVE_20260723_012640 | 0.004 | 0.4891319513320923 | ||
| LIVE_20260723_012640 | 0.00415 | 0.49165930509567257 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.49418187379837036 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.49670441389083864 | ||
| LIVE_20260723_012640 | 0.0035 | 0.49911267042160035 | ||
| LIVE_20260723_012640 | 0.0031333333333333335 | 0.5013160586357117 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.5032071304321288 | 0.22 | |
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.5049721264839172 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.506697084903717 | ||
| LIVE_20260723_012640 | 0.0025 | 0.508287718296051 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.50989581823349 | ||
| LIVE_20260723_012640 | 0.0027 | 0.5114809036254883 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.5132215428352356 | ||
| LIVE_20260723_012640 | 0.0032 | 0.5151118922233582 | ||
| LIVE_20260723_012640 | 0.003533333333333333 | 0.5171664309501648 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.5194132232666016 | ||
| LIVE_20260723_012640 | 0.0041 | 0.5217846298217773 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.5243531489372253 | ||
| LIVE_20260723_012640 | 0.004 | 0.5268594121932983 | ||
| LIVE_20260723_012640 | 0.003683333333333333 | 0.5293871974945068 | ||
| LIVE_20260723_012640 | 0.0033 | 0.5316440439224243 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.5336853313446045 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.5355856037139892 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.5373508191108703 | ||
| LIVE_20260723_012640 | 0.0025 | 0.5389318656921387 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.5405160856246948 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.5420854067802429 | ||
| LIVE_20260723_012640 | 0.0028 | 0.5436692714691163 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.5454332518577576 | ||
| LIVE_20260723_012640 | 0.0033666666666666667 | 0.5473442888259887 | ||
| LIVE_20260723_012640 | 0.0037 | 0.5494114708900452 | ||
| LIVE_20260723_012640 | 0.004 | 0.5517792725563049 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.5542720413208008 | ||
| LIVE_20260723_012640 | 0.0041 | 0.5568249702453614 | ||
| LIVE_20260723_012640 | 0.00385 | 0.5593375205993651 | ||
| LIVE_20260723_012640 | 0.003483333333333333 | 0.5617320036888123 | ||
| LIVE_20260723_012640 | 0.0031333333333333335 | 0.5639387702941894 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.565849997997284 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.56757568359375 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.569315242767334 | ||
| LIVE_20260723_012640 | 0.0025 | 0.5708950638771058 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.5724862241744995 | ||
| LIVE_20260723_012640 | 0.0027 | 0.5740508103370666 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.5758155274391175 | ||
| LIVE_20260723_012640 | 0.0032 | 0.5776863026618957 | ||
| LIVE_20260723_012640 | 0.003533333333333333 | 0.5796118545532227 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.5818585729598998 | ||
| LIVE_20260723_012640 | 0.0041 | 0.5842263340950011 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.586756670475006 | ||
| LIVE_20260723_012640 | 0.004 | 0.5892685675621032 | ||
| LIVE_20260723_012640 | 0.0036666666666666666 | 0.5916717791557311 | ||
| LIVE_20260723_012640 | 0.0033 | 0.5938988447189331 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.5959847831726074 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.5979109406471252 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.5996513772010803 | ||
| LIVE_20260723_012640 | 0.0025 | 0.599 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.595 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.598 | ||
| LIVE_20260723_012640 | 0.0028 | 0.6060329675674438 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.6077632546424865 | ||
| LIVE_20260723_012640 | 0.0033666666666666667 | 0.6096738648414611 | ||
| LIVE_20260723_012640 | 0.0037166666666666667 | 0.6117303395271301 | ||
| LIVE_20260723_012640 | 0.004 | 0.6139611434936523 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.616369125843048 | ||
| LIVE_20260723_012640 | 0.0041 | 0.6188767051696777 | ||
| LIVE_20260723_012640 | 0.00385 | 0.6213989472389221 | ||
| LIVE_20260723_012640 | 0.003483333333333333 | 0.6237715578079224 | ||
| LIVE_20260723_012640 | 0.0031166666666666665 | 0.605 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.596 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.597 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.606 | ||
| LIVE_20260723_012640 | 0.0025 | 0.621 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.6345038628578186 | ||
| LIVE_20260723_012640 | 0.0027 | 0.6360737490653992 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.6378251218795776 | ||
| LIVE_20260723_012640 | 0.0032166666666666667 | 0.6397257113456726 | ||
| LIVE_20260723_012640 | 0.0035499999999999998 | 0.6417819499969482 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.6439843416213988 | ||
| LIVE_20260723_012640 | 0.0041 | 0.6463712954521179 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.639 | ||
| LIVE_20260723_012640 | 0.004 | 0.61 | 0.33 | |
| LIVE_20260723_012640 | 0.0036666666666666666 | 0.596 | 0.33 | |
| LIVE_20260723_012640 | 0.0033 | 0.599 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.614 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.634 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.656 | ||
| LIVE_20260723_012640 | 0.0025 | 0.6634834218025207 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.6650734782218932 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.6666483974456787 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.6682398438453674 | ||
| LIVE_20260723_012640 | 0.0030666666666666668 | 0.6699693822860717 | ||
| LIVE_20260723_012640 | 0.0033833333333333337 | 0.6718698048591614 | ||
| LIVE_20260723_012640 | 0.0037166666666666667 | 0.65 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.622 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.6 | ||
| LIVE_20260723_012640 | 0.0041 | 0.596 | ||
| LIVE_20260723_012640 | 0.0038333333333333336 | 0.611 | ||
| LIVE_20260723_012640 | 0.0034666666666666665 | 0.637 | ||
| LIVE_20260723_012640 | 0.0031166666666666665 | 0.664 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.685 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.6921607685089111 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.6938817667961121 | ||
| LIVE_20260723_012640 | 0.0025 | 0.695 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.684 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.667 | ||
| LIVE_20260723_012640 | 0.0029333333333333334 | 0.646 | ||
| LIVE_20260723_012640 | 0.0032166666666666667 | 0.624 | ||
| LIVE_20260723_012640 | 0.0035499999999999998 | 0.605 | ||
| LIVE_20260723_012640 | 0.0038833333333333337 | 0.595 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.602 | ||
| LIVE_20260723_012640 | 0.00415 | 0.625 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.657 | ||
| LIVE_20260723_012640 | 0.00365 | 0.684 | ||
| LIVE_20260723_012640 | 0.0032833333333333334 | 0.699 | ||
| LIVE_20260723_012640 | 0.00295 | 0.698 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.688 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.671 | ||
| LIVE_20260723_012640 | 0.0025 | 0.651 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.632 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.614 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.601 | ||
| LIVE_20260723_012640 | 0.0030833333333333333 | 0.595 | ||
| LIVE_20260723_012640 | 0.0034 | 0.599 | ||
| LIVE_20260723_012640 | 0.0037333333333333333 | 0.615 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.643 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.673 | ||
| LIVE_20260723_012640 | 0.0041 | 0.695 | ||
| LIVE_20260723_012640 | 0.003816666666666667 | 0.699 | ||
| LIVE_20260723_012640 | 0.00345 | 0.685 | ||
| LIVE_20260723_012640 | 0.0031 | 0.662 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.638 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.618 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.603 | ||
| LIVE_20260723_012640 | 0.0025 | 0.596 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.596 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.603 | ||
| LIVE_20260723_012640 | 0.0029333333333333334 | 0.618 | ||
| LIVE_20260723_012640 | 0.0032333333333333333 | 0.64 | ||
| LIVE_20260723_012640 | 0.0035666666666666668 | 0.665 | ||
| LIVE_20260723_012640 | 0.0038833333333333337 | 0.688 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.7 | ||
| LIVE_20260723_012640 | 0.00415 | 0.693 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.669 | ||
| LIVE_20260723_012640 | 0.00365 | 0.639 | ||
| LIVE_20260723_012640 | 0.003266666666666667 | 0.613 | ||
| LIVE_20260723_012640 | 0.00295 | 0.598 | ||
| LIVE_20260723_012640 | 0.0027 | 0.595 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.601 | ||
| LIVE_20260723_012640 | 0.0025 | 0.614 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.631 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.651 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.671 | ||
| LIVE_20260723_012640 | 0.0030833333333333333 | 0.688 | ||
| LIVE_20260723_012640 | 0.0034 | 0.699 | ||
| LIVE_20260723_012640 | 0.0037333333333333333 | 0.698 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.682 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.653 | ||
| LIVE_20260723_012640 | 0.004083333333333333 | 0.621 | ||
| LIVE_20260723_012640 | 0.003816666666666667 | 0.6 | ||
| LIVE_20260723_012640 | 0.00345 | 0.596 | ||
| LIVE_20260723_012640 | 0.0031 | 0.606 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.624 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.644 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.662 | ||
| LIVE_20260723_012640 | 0.0025 | 0.677 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.686 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.689 | ||
| LIVE_20260723_012640 | 0.00295 | 0.684 | ||
| LIVE_20260723_012640 | 0.0032333333333333333 | 0.669 | ||
| LIVE_20260723_012640 | 0.0035666666666666668 | 0.645 | ||
| LIVE_20260723_012640 | 0.0039000000000000003 | 0.615 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.587 | ||
| LIVE_20260723_012640 | 0.00415 | 0.572 | ||
| LIVE_20260723_012640 | 0.003966666666666666 | 0.576 | ||
| LIVE_20260723_012640 | 0.0036333333333333335 | 0.595 | ||
| LIVE_20260723_012640 | 0.003266666666666667 | 0.619 | ||
| LIVE_20260723_012640 | 0.0029333333333333334 | 0.639 | ||
| LIVE_20260723_012640 | 0.0027 | 0.652 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.656 | ||
| LIVE_20260723_012640 | 0.0025 | 0.653 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.643 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.627 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.607 | ||
| LIVE_20260723_012640 | 0.0030833333333333333 | 0.585 | ||
| LIVE_20260723_012640 | 0.0034 | 0.563 | ||
| LIVE_20260723_012640 | 0.0037500000000000003 | 0.547 | ||
| LIVE_20260723_012640 | 0.004033333333333333 | 0.544 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.556 | ||
| LIVE_20260723_012640 | 0.004083333333333333 | 0.58 | ||
| LIVE_20260723_012640 | 0.003816666666666667 | 0.605 | ||
| LIVE_20260723_012640 | 0.00345 | 0.62 | ||
| LIVE_20260723_012640 | 0.0030833333333333333 | 0.622 | ||
| LIVE_20260723_012640 | 0.0028 | 0.614 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.599 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.581 | ||
| LIVE_20260723_012640 | 0.0025 | 0.562 | ||
| LIVE_20260723_012640 | 0.0025833333333333333 | 0.543 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.528 | ||
| LIVE_20260723_012640 | 0.00295 | 0.518 | ||
| LIVE_20260723_012640 | 0.0032500000000000003 | 0.516 | ||
| LIVE_20260723_012640 | 0.0035833333333333333 | 0.523 | ||
| LIVE_20260723_012640 | 0.0039000000000000003 | 0.54 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.563 | ||
| LIVE_20260723_012640 | 0.00415 | 0.584 | ||
| LIVE_20260723_012640 | 0.003966666666666666 | 0.591 | ||
| LIVE_20260723_012640 | 0.0036333333333333335 | 0.583 | ||
| LIVE_20260723_012640 | 0.0032500000000000003 | 0.563 | ||
| LIVE_20260723_012640 | 0.0029333333333333334 | 0.54 | ||
| LIVE_20260723_012640 | 0.0027 | 0.52 | 0.44 | |
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.504 | 0.44 | |
| LIVE_20260723_012640 | 0.0025 | 0.493 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.489 | ||
| LIVE_20260723_012640 | 0.00265 | 0.491 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.499 | ||
| LIVE_20260723_012640 | 0.0031 | 0.512 | ||
| LIVE_20260723_012640 | 0.0034166666666666664 | 0.53 | ||
| LIVE_20260723_012640 | 0.0037500000000000003 | 0.548 | ||
| LIVE_20260723_012640 | 0.004033333333333333 | 0.559 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.558 | ||
| LIVE_20260723_012640 | 0.004083333333333333 | 0.541 | ||
| LIVE_20260723_012640 | 0.0038 | 0.515 | ||
| LIVE_20260723_012640 | 0.003433333333333333 | 0.49 | ||
| LIVE_20260723_012640 | 0.0030666666666666668 | 0.473 | ||
| LIVE_20260723_012640 | 0.0028 | 0.465 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.465 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.471 | ||
| LIVE_20260723_012640 | 0.0025 | 0.482 | ||
| LIVE_20260723_012640 | 0.0025833333333333333 | 0.495 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.509 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.522 | ||
| LIVE_20260723_012640 | 0.003266666666666667 | 0.53 | ||
| LIVE_20260723_012640 | 0.0036 | 0.531 | ||
| LIVE_20260723_012640 | 0.003916666666666666 | 0.522 | ||
| LIVE_20260723_012640 | 0.0041333333333333335 | 0.501 | ||
| LIVE_20260723_012640 | 0.00415 | 0.475 | ||
| LIVE_20260723_012640 | 0.0039499999999999995 | 0.452 | ||
| LIVE_20260723_012640 | 0.0036166666666666665 | 0.441 | ||
| LIVE_20260723_012640 | 0.0032333333333333333 | 0.443 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.453 | ||
| LIVE_20260723_012640 | 0.0026833333333333336 | 0.467 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.481 | ||
| LIVE_20260723_012640 | 0.0025 | 0.493 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.501 | ||
| LIVE_20260723_012640 | 0.00265 | 0.505 | ||
| LIVE_20260723_012640 | 0.00285 | 0.504 | ||
| LIVE_20260723_012640 | 0.0031166666666666665 | 0.496 | ||
| LIVE_20260723_012640 | 0.003433333333333333 | 0.481 | ||
| LIVE_20260723_012640 | 0.003766666666666667 | 0.46 | ||
| LIVE_20260723_012640 | 0.00405 | 0.438 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.422 | ||
| LIVE_20260723_012640 | 0.004066666666666666 | 0.419 | ||
| LIVE_20260723_012640 | 0.0037833333333333334 | 0.429 | ||
| LIVE_20260723_012640 | 0.0034166666666666664 | 0.446 | ||
| LIVE_20260723_012640 | 0.0030666666666666668 | 0.463 | ||
| LIVE_20260723_012640 | 0.0027833333333333334 | 0.475 | ||
| LIVE_20260723_012640 | 0.0026 | 0.48 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.48 | ||
| LIVE_20260723_012640 | 0.0025 | 0.475 | ||
| LIVE_20260723_012640 | 0.0025833333333333333 | 0.465 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.452 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.436 | ||
| LIVE_20260723_012640 | 0.003266666666666667 | 0.419 | ||
| LIVE_20260723_012640 | 0.0036 | 0.405 | ||
| LIVE_20260723_012640 | 0.003916666666666666 | 0.399 | ||
| LIVE_20260723_012640 | 0.0041333333333333335 | 0.403 | ||
| LIVE_20260723_012640 | 0.00415 | 0.418 | ||
| LIVE_20260723_012640 | 0.0039499999999999995 | 0.437 | ||
| LIVE_20260723_012640 | 0.0036 | 0.452 | ||
| LIVE_20260723_012640 | 0.0032333333333333333 | 0.458 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.455 | ||
| LIVE_20260723_012640 | 0.0026833333333333336 | 0.446 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.433 | ||
| LIVE_20260723_012640 | 0.0025 | 0.419 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.406 | ||
| LIVE_20260723_012640 | 0.00265 | 0.394 | ||
| LIVE_20260723_012640 | 0.00285 | 0.385 | ||
| LIVE_20260723_012640 | 0.0031166666666666665 | 0.381 | ||
| LIVE_20260723_012640 | 0.00345 | 0.383 | ||
| LIVE_20260723_012640 | 0.0037833333333333334 | 0.393 | ||
| LIVE_20260723_012640 | 0.00405 | 0.409 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.427 | ||
| LIVE_20260723_012640 | 0.004066666666666666 | 0.437 | ||
| LIVE_20260723_012640 | 0.003766666666666667 | 0.436 | ||
| LIVE_20260723_012640 | 0.0034 | 0.424 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.408 | ||
| LIVE_20260723_012640 | 0.0027833333333333334 | 0.392 | ||
| LIVE_20260723_012640 | 0.0026 | 0.379 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.37 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.365 | ||
| LIVE_20260723_012640 | 0.0025833333333333333 | 0.365 | ||
| LIVE_20260723_012640 | 0.0027500000000000003 | 0.369 | ||
| LIVE_20260723_012640 | 0.002983333333333333 | 0.378 | ||
| LIVE_20260723_012640 | 0.0032833333333333334 | 0.39 | ||
| LIVE_20260723_012640 | 0.0036166666666666665 | 0.404 | ||
| LIVE_20260723_012640 | 0.003933333333333333 | 0.416 | ||
| LIVE_20260723_012640 | 0.0041333333333333335 | 0.42 | ||
| LIVE_20260723_012640 | 0.0041333333333333335 | 0.412 | ||
| LIVE_20260723_012640 | 0.003933333333333333 | 0.395 | ||
| LIVE_20260723_012640 | 0.0035833333333333333 | 0.376 | ||
| LIVE_20260723_012640 | 0.0032166666666666667 | 0.36 | 0.33 | |
| LIVE_20260723_012640 | 0.0029 | 0.351 | 0.33 | |
| LIVE_20260723_012640 | 0.0026666666666666666 | 0.35 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.353 | ||
| LIVE_20260723_012640 | 0.0025 | 0.36 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.37 | ||
| LIVE_20260723_012640 | 0.0026666666666666666 | 0.38 | ||
| LIVE_20260723_012640 | 0.00285 | 0.391 | ||
| LIVE_20260723_012640 | 0.0031333333333333335 | 0.399 | ||
| LIVE_20260723_012640 | 0.00345 | 0.403 | ||
| LIVE_20260723_012640 | 0.0037833333333333334 | 0.4 | ||
| LIVE_20260723_012640 | 0.00405 | 0.388 | ||
| LIVE_20260723_012640 | 0.0086 | 0.106 | ||
| LIVE_20260723_012640 | 0.008616666666666667 | 0.106 | ||
| LIVE_20260723_012640 | 0.010533333333333334 | 0.125 | ||
| LIVE_20260723_012640 | 0.013666666666666666 | 0.157 | ||
| LIVE_20260723_012640 | 0.014783333333333334 | 0.168 | ||
| LIVE_20260723_012640 | 0.01105 | 0.129 | ||
| LIVE_20260723_012640 | 0.008533333333333334 | 0.104 | ||
| LIVE_20260723_012640 | 0.008683333333333333 | 0.105 | ||
| LIVE_20260723_012640 | 0.0107 | 0.125 | ||
| LIVE_20260723_012640 | 0.01385 | 0.157 | ||
| LIVE_20260723_012640 | 0.014666666666666666 | 0.164 | ||
| LIVE_20260723_012640 | 0.0108 | 0.125 | ||
| LIVE_20260723_012640 | 0.008466666666666667 | 0.101 | ||
| LIVE_20260723_012640 | 0.00875 | 0.104 | ||
| LIVE_20260723_012640 | 0.010883333333333333 | 0.125 | ||
| LIVE_20260723_012640 | 0.014033333333333333 | 0.156 | ||
| LIVE_20260723_012640 | 0.014533333333333334 | 0.16 | ||
| LIVE_20260723_012640 | 0.010566666666666667 | 0.121 | ||
| LIVE_20260723_012640 | 0.008433333333333333 | 0.099 | ||
| LIVE_20260723_012640 | 0.008833333333333334 | 0.103 | ||
| LIVE_20260723_012640 | 0.011066666666666667 | 0.125 | ||
| LIVE_20260723_012640 | 0.014199999999999999 | 0.155 | ||
| LIVE_20260723_012640 | 0.014366666666666666 | 0.156 | ||
| LIVE_20260723_012640 | 0.010333333333333333 | 0.116 | ||
| LIVE_20260723_012640 | 0.008383333333333333 | 0.097 | ||
| LIVE_20260723_012640 | 0.008933333333333333 | 0.102 | ||
| LIVE_20260723_012640 | 0.011266666666666668 | 0.125 | ||
| LIVE_20260723_012640 | 0.01435 | 0.154 | ||
| LIVE_20260723_012640 | 0.014166666666666666 | 0.152 | ||
| LIVE_20260723_012640 | 0.010116666666666666 | 0.112 | ||
| LIVE_20260723_012640 | 0.008366666666666666 | 0.095 | ||
| LIVE_20260723_012640 | 0.009033333333333334 | 0.102 | ||
| LIVE_20260723_012640 | 0.01145 | 0.124 | ||
| LIVE_20260723_012640 | 0.0145 | 0.153 | ||
| LIVE_20260723_012640 | 0.013966666666666665 | 0.147 | ||
| LIVE_20260723_012640 | 0.009899999999999999 | 0.109 | ||
| LIVE_20260723_012640 | 0.00835 | 0.094 | ||
| LIVE_20260723_012640 | 0.009133333333333334 | 0.101 | ||
| LIVE_20260723_012640 | 0.011649999999999999 | 0.124 | ||
| LIVE_20260723_012640 | 0.014633333333333333 | 0.152 | ||
| LIVE_20260723_012640 | 0.013733333333333332 | 0.143 | ||
| LIVE_20260723_012640 | 0.009716666666666667 | 0.105 | ||
| LIVE_20260723_012640 | 0.008333333333333333 | 0.092 | ||
| LIVE_20260723_012640 | 0.009250000000000001 | 0.1 | ||
| LIVE_20260723_012640 | 0.011866666666666666 | 0.124 | ||
| LIVE_20260723_012640 | 0.014750000000000001 | 0.15 | ||
| LIVE_20260723_012640 | 0.013483333333333335 | 0.138 | ||
| LIVE_20260723_012640 | 0.009533333333333333 | 0.102 | ||
| LIVE_20260723_012640 | 0.008333333333333333 | 0.091 | ||
| LIVE_20260723_012640 | 0.009366666666666667 | 0.1 | ||
| LIVE_20260723_012640 | 0.012066666666666667 | 0.124 | ||
| LIVE_20260723_012640 | 0.014833333333333334 | 0.149 | ||
| LIVE_20260723_012640 | 0.013216666666666666 | 0.134 | ||
| LIVE_20260723_012640 | 0.009366666666666667 | 0.099 | ||
| LIVE_20260723_012640 | 0.00835 | 0.09 | ||
| LIVE_20260723_012640 | 0.009483333333333333 | 0.1 | ||
| LIVE_20260723_012640 | 0.012266666666666667 | 0.125 | ||
| LIVE_20260723_012640 | 0.014916666666666667 | 0.148 | ||
| LIVE_20260723_012640 | 0.01295 | 0.13 | ||
| LIVE_20260723_012640 | 0.009216666666666668 | 0.097 | ||
| LIVE_20260723_012640 | 0.00835 | 0.089 | ||
| LIVE_20260723_012640 | 0.009616666666666666 | 0.1 | ||
| LIVE_20260723_012640 | 0.012466666666666666 | 0.125 | ||
| LIVE_20260723_012640 | 0.014966666666666666 | 0.147 | ||
| LIVE_20260723_012640 | 0.0127 | 0.126 | ||
| LIVE_20260723_012640 | 0.009083333333333334 | 0.094 | ||
| LIVE_20260723_012640 | 0.008383333333333333 | 0.088 | ||
| LIVE_20260723_012640 | 0.00975 | 0.1 | ||
| LIVE_20260723_012640 | 0.012683333333333333 | 0.125 | ||
| LIVE_20260723_012640 | 0.015000000000000001 | 0.145 | ||
| LIVE_20260723_012640 | 0.012416666666666666 | 0.122 | ||
| LIVE_20260723_012640 | 0.008966666666666668 | 0.092 | ||
| LIVE_20260723_012640 | 0.008416666666666666 | 0.087 | 0.22 | |
| LIVE_20260723_012640 | 0.009899999999999999 | 0.1 | 0.22 | |
| LIVE_20260723_012640 | 0.012883333333333333 | 0.126 | ||
| LIVE_20260723_012640 | 0.015000000000000001 | 0.144 | ||
| LIVE_20260723_012640 | 0.012133333333333333 | 0.119 | ||
| LIVE_20260723_012640 | 0.00885 | 0.091 | ||
| LIVE_20260723_012640 | 0.008450000000000001 | 0.087 | ||
| LIVE_20260723_012640 | 0.01005 | 0.101 | ||
| LIVE_20260723_012640 | 0.013083333333333334 | 0.127 | ||
| LIVE_20260723_012640 | 0.014983333333333333 | 0.143 | ||
| LIVE_20260723_012640 | 0.01185 | 0.116 | ||
| LIVE_20260723_012640 | 0.00875 | 0.089 | ||
| LIVE_20260723_012640 | 0.0085 | 0.087 | ||
| LIVE_20260723_012640 | 0.010199999999999999 | 0.101 | ||
| LIVE_20260723_012640 | 0.013283333333333334 | 0.128 | ||
| LIVE_20260723_012640 | 0.014933333333333333 | 0.141 | ||
| LIVE_20260723_012640 | 0.011583333333333333 | 0.113 | ||
| LIVE_20260723_012640 | 0.008666666666666666 | 0.088 | ||
| LIVE_20260723_012640 | 0.00855 | 0.087 | ||
| LIVE_20260723_012640 | 0.010366666666666666 | 0.102 | ||
| LIVE_20260723_012640 | 0.013483333333333335 | 0.129 | ||
| LIVE_20260723_012640 | 0.014866666666666667 | 0.14 | ||
| LIVE_20260723_012640 | 0.011316666666666668 | 0.11 | ||
| LIVE_20260723_012640 | 0.0086 | 0.087 | ||
| LIVE_20260723_012640 | 0.008616666666666667 | 0.087 | ||
| LIVE_20260723_012640 | 0.010533333333333334 | 0.103 | ||
| LIVE_20260723_012640 | 0.013666666666666666 | 0.13 | ||
| LIVE_20260723_012640 | 0.014783333333333334 | 0.139 | ||
| LIVE_20260723_012640 | 0.01105 | 0.107 | ||
| LIVE_20260723_012640 | 0.008533333333333334 | 0.086 | ||
| LIVE_20260723_012640 | 0.008683333333333333 | 0.087 | ||
| LIVE_20260723_012640 | 0.0107 | 0.104 | ||
| LIVE_20260723_012640 | 0.01385 | 0.131 | ||
| LIVE_20260723_012640 | 0.014666666666666666 | 0.138 | ||
| LIVE_20260723_012640 | 0.0108 | 0.105 | ||
| LIVE_20260723_012640 | 0.008466666666666667 | 0.086 | ||
| LIVE_20260723_012640 | 0.00875 | 0.088 | ||
| LIVE_20260723_012640 | 0.010883333333333333 | 0.106 | ||
| LIVE_20260723_012640 | 0.014033333333333333 | 0.132 | ||
| LIVE_20260723_012640 | 0.014533333333333334 | 0.137 | ||
| LIVE_20260723_012640 | 0.010566666666666667 | 0.103 | ||
| LIVE_20260723_012640 | 0.008433333333333333 | 0.085 | ||
| LIVE_20260723_012640 | 0.008833333333333334 | 0.089 | ||
| LIVE_20260723_012640 | 0.011066666666666667 | 0.108 | ||
| LIVE_20260723_012640 | 0.014199999999999999 | 0.134 | ||
| LIVE_20260723_012640 | 0.014366666666666666 | 0.135 | ||
| LIVE_20260723_012640 | 0.010333333333333333 | 0.101 | ||
| LIVE_20260723_012640 | 0.008383333333333333 | 0.085 | ||
| LIVE_20260723_012640 | 0.008933333333333333 | 0.09 | ||
| LIVE_20260723_012640 | 0.011266666666666668 | 0.109 | ||
| LIVE_20260723_012640 | 0.01435 | 0.136 | ||
| LIVE_20260723_012640 | 0.014166666666666666 | 0.134 | ||
| LIVE_20260723_012640 | 0.010116666666666666 | 0.1 | ||
| LIVE_20260723_012640 | 0.008366666666666666 | 0.085 | ||
| LIVE_20260723_012640 | 0.009033333333333334 | 0.091 | ||
| LIVE_20260723_012640 | 0.01145 | 0.111 | ||
| LIVE_20260723_012640 | 0.0145 | 0.137 | ||
| LIVE_20260723_012640 | 0.013966666666666665 | 0.133 | ||
| LIVE_20260723_012640 | 0.009899999999999999 | 0.098 | ||
| LIVE_20260723_012640 | 0.00835 | 0.085 | ||
| LIVE_20260723_012640 | 0.009133333333333334 | 0.092 | ||
| LIVE_20260723_012640 | 0.011649999999999999 | 0.113 | ||
| LIVE_20260723_012640 | 0.014633333333333333 | 0.138 | ||
| LIVE_20260723_012640 | 0.013733333333333332 | 0.131 | ||
| LIVE_20260723_012640 | 0.009716666666666667 | 0.097 | ||
| LIVE_20260723_012640 | 0.008333333333333333 | 0.085 | ||
| LIVE_20260723_012640 | 0.009250000000000001 | 0.093 | ||
| LIVE_20260723_012640 | 0.011866666666666666 | 0.115 | ||
| LIVE_20260723_012640 | 0.014750000000000001 | 0.14 | ||
| LIVE_20260723_012640 | 0.013483333333333335 | 0.129 | ||
| LIVE_20260723_012640 | 0.009533333333333333 | 0.095 | ||
| LIVE_20260723_012640 | 0.008333333333333333 | 0.085 | ||
| LIVE_20260723_012640 | 0.009366666666666667 | 0.094 | ||
| LIVE_20260723_012640 | 0.012066666666666667 | 0.117 | ||
| LIVE_20260723_012640 | 0.014833333333333334 | 0.141 | ||
| LIVE_20260723_012640 | 0.013216666666666666 | 0.127 | ||
| LIVE_20260723_012640 | 0.009366666666666667 | 0.094 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.507 | ||
| LIVE_20260723_012640 | 0.0025 | 0.498 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.494 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.496 | ||
| LIVE_20260723_012640 | 0.0027833333333333334 | 0.505 | ||
| LIVE_20260723_012640 | 0.003033333333333333 | 0.52 | ||
| LIVE_20260723_012640 | 0.00335 | 0.54 | ||
| LIVE_20260723_012640 | 0.003683333333333333 | 0.561 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.578 | ||
| LIVE_20260723_012640 | 0.00415 | 0.584 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.573 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.551 | ||
| LIVE_20260723_012640 | 0.0035166666666666666 | 0.526 | ||
| LIVE_20260723_012640 | 0.00315 | 0.508 | ||
| LIVE_20260723_012640 | 0.00285 | 0.499 | ||
| LIVE_20260723_012640 | 0.00265 | 0.5 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.507 | ||
| LIVE_20260723_012640 | 0.0025 | 0.52 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.536 | ||
| LIVE_20260723_012640 | 0.0027 | 0.553 | ||
| LIVE_20260723_012640 | 0.0029 | 0.569 | ||
| LIVE_20260723_012640 | 0.0031833333333333336 | 0.582 | ||
| LIVE_20260723_012640 | 0.0035166666666666666 | 0.589 | 0.33 | |
| LIVE_20260723_012640 | 0.00385 | 0.584 | ||
| LIVE_20260723_012640 | 0.0041 | 0.566 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.54 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.516 | ||
| LIVE_20260723_012640 | 0.0037 | 0.503 | ||
| LIVE_20260723_012640 | 0.003316666666666667 | 0.504 | ||
| LIVE_20260723_012640 | 0.002983333333333333 | 0.517 | ||
| LIVE_20260723_012640 | 0.0027333333333333333 | 0.534 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.552 | ||
| LIVE_20260723_012640 | 0.0025 | 0.569 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.581 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.589 | ||
| LIVE_20260723_012640 | 0.0028 | 0.591 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.586 | ||
| LIVE_20260723_012640 | 0.00335 | 0.572 | ||
| LIVE_20260723_012640 | 0.0037 | 0.551 | ||
| LIVE_20260723_012640 | 0.004 | 0.527 | ||
| LIVE_20260723_012640 | 0.00415 | 0.508 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.503 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.515 | ||
| LIVE_20260723_012640 | 0.0035 | 0.537 | ||
| LIVE_20260723_012640 | 0.0031333333333333335 | 0.56 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.578 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.589 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.592 | ||
| LIVE_20260723_012640 | 0.0025 | 0.588 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.579 | ||
| LIVE_20260723_012640 | 0.0027 | 0.565 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.547 | ||
| LIVE_20260723_012640 | 0.0032 | 0.528 | ||
| LIVE_20260723_012640 | 0.003533333333333333 | 0.512 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.503 | ||
| LIVE_20260723_012640 | 0.0041 | 0.507 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.526 | ||
| LIVE_20260723_012640 | 0.004 | 0.553 | 0.44 | |
| LIVE_20260723_012640 | 0.003683333333333333 | 0.576 | ||
| LIVE_20260723_012640 | 0.0033 | 0.589 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.589 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.58 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.566 | ||
| LIVE_20260723_012640 | 0.0025 | 0.55 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.533 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.518 | ||
| LIVE_20260723_012640 | 0.0028 | 0.507 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.501 | ||
| LIVE_20260723_012640 | 0.0033666666666666667 | 0.503 | ||
| LIVE_20260723_012640 | 0.0037 | 0.516 | ||
| LIVE_20260723_012640 | 0.004 | 0.538 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.563 | ||
| LIVE_20260723_012640 | 0.0041 | 0.582 | ||
| LIVE_20260723_012640 | 0.00385 | 0.586 | ||
| LIVE_20260723_012640 | 0.003483333333333333 | 0.575 | ||
| LIVE_20260723_012640 | 0.0031333333333333335 | 0.556 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.535 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.517 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.505 | ||
| LIVE_20260723_012640 | 0.0025 | 0.498 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.497 | ||
| LIVE_20260723_012640 | 0.0027 | 0.502 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.514 | ||
| LIVE_20260723_012640 | 0.0032 | 0.531 | ||
| LIVE_20260723_012640 | 0.003533333333333333 | 0.552 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.57 | ||
| LIVE_20260723_012640 | 0.0041 | 0.581 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.576 | ||
| LIVE_20260723_012640 | 0.004 | 0.556 | ||
| LIVE_20260723_012640 | 0.0036666666666666666 | 0.53 | ||
| LIVE_20260723_012640 | 0.0033 | 0.508 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.495 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.491 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.495 | 0.56 | |
| LIVE_20260723_012640 | 0.0025 | 0.505 | 0.56 | |
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.518 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.534 | ||
| LIVE_20260723_012640 | 0.0028 | 0.55 | ||
| LIVE_20260723_012640 | 0.0030499999999999998 | 0.564 | ||
| LIVE_20260723_012640 | 0.0033666666666666667 | 0.572 | ||
| LIVE_20260723_012640 | 0.0037166666666666667 | 0.572 | ||
| LIVE_20260723_012640 | 0.004 | 0.559 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.535 | ||
| LIVE_20260723_012640 | 0.0041 | 0.508 | ||
| LIVE_20260723_012640 | 0.00385 | 0.489 | ||
| LIVE_20260723_012640 | 0.003483333333333333 | 0.484 | ||
| LIVE_20260723_012640 | 0.0031166666666666665 | 0.491 | ||
| LIVE_20260723_012640 | 0.0028333333333333335 | 0.505 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.522 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.538 | ||
| LIVE_20260723_012640 | 0.0025 | 0.551 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.56 | ||
| LIVE_20260723_012640 | 0.0027 | 0.564 | ||
| LIVE_20260723_012640 | 0.0029166666666666664 | 0.561 | ||
| LIVE_20260723_012640 | 0.0032166666666666667 | 0.551 | ||
| LIVE_20260723_012640 | 0.0035499999999999998 | 0.533 | ||
| LIVE_20260723_012640 | 0.0038666666666666667 | 0.51 | ||
| LIVE_20260723_012640 | 0.0041 | 0.488 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.476 | ||
| LIVE_20260723_012640 | 0.004 | 0.479 | ||
| LIVE_20260723_012640 | 0.0036666666666666666 | 0.495 | ||
| LIVE_20260723_012640 | 0.0033 | 0.517 | ||
| LIVE_20260723_012640 | 0.0029666666666666665 | 0.535 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.548 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.553 | ||
| LIVE_20260723_012640 | 0.0025 | 0.552 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.545 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.533 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.517 | ||
| LIVE_20260723_012640 | 0.0030666666666666668 | 0.499 | ||
| LIVE_20260723_012640 | 0.0033833333333333337 | 0.481 | ||
| LIVE_20260723_012640 | 0.0037166666666666667 | 0.468 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.466 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.476 | ||
| LIVE_20260723_012640 | 0.0041 | 0.498 | ||
| LIVE_20260723_012640 | 0.0038333333333333336 | 0.521 | ||
| LIVE_20260723_012640 | 0.0034666666666666665 | 0.537 | ||
| LIVE_20260723_012640 | 0.0031166666666666665 | 0.541 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.536 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.524 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.509 | ||
| LIVE_20260723_012640 | 0.0025 | 0.493 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.478 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.465 | ||
| LIVE_20260723_012640 | 0.0029333333333333334 | 0.457 | ||
| LIVE_20260723_012640 | 0.0032166666666666667 | 0.455 | ||
| LIVE_20260723_012640 | 0.0035499999999999998 | 0.461 | ||
| LIVE_20260723_012640 | 0.0038833333333333337 | 0.477 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.499 | ||
| LIVE_20260723_012640 | 0.00415 | 0.519 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.528 | ||
| LIVE_20260723_012640 | 0.00365 | 0.523 | ||
| LIVE_20260723_012640 | 0.0032833333333333334 | 0.507 | ||
| LIVE_20260723_012640 | 0.00295 | 0.488 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.47 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.456 | ||
| LIVE_20260723_012640 | 0.0025 | 0.447 | ||
| LIVE_20260723_012640 | 0.002533333333333333 | 0.443 | ||
| LIVE_20260723_012640 | 0.0026333333333333334 | 0.445 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.453 | ||
| LIVE_20260723_012640 | 0.0030833333333333333 | 0.466 | ||
| LIVE_20260723_012640 | 0.0034 | 0.482 | ||
| LIVE_20260723_012640 | 0.0037333333333333333 | 0.5 | ||
| LIVE_20260723_012640 | 0.004016666666666667 | 0.512 | ||
| LIVE_20260723_012640 | 0.004166666666666667 | 0.513 | ||
| LIVE_20260723_012640 | 0.0041 | 0.5 | ||
| LIVE_20260723_012640 | 0.003816666666666667 | 0.478 | 0.67 | |
| LIVE_20260723_012640 | 0.00345 | 0.455 | ||
| LIVE_20260723_012640 | 0.0031 | 0.439 | ||
| LIVE_20260723_012640 | 0.002816666666666667 | 0.432 | ||
| LIVE_20260723_012640 | 0.002616666666666667 | 0.433 | ||
| LIVE_20260723_012640 | 0.0025166666666666666 | 0.439 | ||
| LIVE_20260723_012640 | 0.0025 | 0.449 | ||
| LIVE_20260723_012640 | 0.0025666666666666667 | 0.462 | ||
| LIVE_20260723_012640 | 0.0027166666666666667 | 0.476 | ||
| LIVE_20260723_012640 | 0.0029333333333333334 | 0.488 | ||
| LIVE_20260723_012640 | 0.0032333333333333333 | 0.498 | ||
| LIVE_20260723_012640 | 0.0035666666666666668 | 0.501 | ||
| LIVE_20260723_012640 | 0.0038833333333333337 | 0.494 | ||
| LIVE_20260723_012640 | 0.004116666666666667 | 0.476 | ||
| LIVE_20260723_012640 | 0.00415 | 0.452 | ||
| LIVE_20260723_012640 | 0.0039833333333333335 | 0.431 | ||
| LIVE_20260723_012640 | 0.00365 | 0.42 | ||
| LIVE_20260723_012640 | 0.003266666666666667 | 0.422 | ||
| LIVE_20260723_012640 | 0.00295 | 0.432 | ||
| LIVE_20260723_012640 | 0.0027 | 0.446 | ||
| LIVE_20260723_012640 | 0.0025499999999999997 | 0.46 | ||
| LIVE_20260723_012640 | 0.0025 | 0.472 | ||
| LIVE_20260723_013334 | 0.004 | 0.3 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.30253034830093384 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.30519182443618775 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.30804073333740234 | ||
| LIVE_20260723_013334 | 0.0041 | 0.31071242094039914 | ||
| LIVE_20260723_013334 | 0.0037 | 0.31327211141586303 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.31565572261810304 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.31773751974105835 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.31965205192565915 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.32139336347579955 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.3231219220161438 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.32501105308532713 | ||
| LIVE_20260723_013334 | 0.0033 | 0.32688183069229126 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.3289275956153869 | ||
| LIVE_20260723_013334 | 0.004 | 0.3311486315727234 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.333670117855072 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.3363519716262817 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.33907357692718504 | ||
| LIVE_20260723_013334 | 0.0041 | 0.34175274848937987 | ||
| LIVE_20260723_013334 | 0.0037 | 0.34426059961318967 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.346631383895874 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.3487073874473572 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.3506290006637573 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.3523929214477539 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.35413036823272703 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.3558666896820068 | ||
| LIVE_20260723_013334 | 0.0033 | 0.35779208183288574 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.35986469984054564 | ||
| LIVE_20260723_013334 | 0.004 | 0.36209884405136106 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.36460549116134644 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.3673120141029358 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.37002619266510006 | ||
| LIVE_20260723_013334 | 0.0041 | 0.37274967193603514 | ||
| LIVE_20260723_013334 | 0.0037 | 0.37531697034835815 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.377681496143341 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.37975207090377805 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.38167495965957643 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.3834164524078369 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.38513519763946535 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.3868697738647461 | ||
| LIVE_20260723_013334 | 0.0033 | 0.3887507104873657 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.3908256077766418 | ||
| LIVE_20260723_013334 | 0.004 | 0.39307142496109004 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.39560964345932004 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.39827223300933834 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.4011065101623535 | ||
| LIVE_20260723_013334 | 0.0041 | 0.40380732774734496 | ||
| LIVE_20260723_013334 | 0.0037 | 0.40633954286575313 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.40868594884872433 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.4107363700866699 | 0.11 | |
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.4126119160652161 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.4143674063682556 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.41612247705459593 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.41798723697662354 | ||
| LIVE_20260723_013334 | 0.0033 | 0.41988309621810915 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.4219591689109802 | ||
| LIVE_20260723_013334 | 0.004 | 0.42418985843658447 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.42670818567276003 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.42941985130310056 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.43213127613067626 | ||
| LIVE_20260723_013334 | 0.0041 | 0.43486705541610715 | ||
| LIVE_20260723_013334 | 0.0037 | 0.43741139888763425 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.43976995706558225 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.4418231678009033 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.44369860172271725 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.44546321153640744 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.4472335767745972 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.44898712158203125 | ||
| LIVE_20260723_013334 | 0.0033 | 0.4509117031097412 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.4529715418815613 | ||
| LIVE_20260723_013334 | 0.004 | 0.45517794370651243 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.4577080917358398 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.4603904438018799 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.46323021888732907 | ||
| LIVE_20260723_013334 | 0.0041 | 0.4659103918075561 | ||
| LIVE_20260723_013334 | 0.0037 | 0.46841389417648316 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.47077920436859133 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.47286177873611446 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.4747672390937805 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.47664805412292477 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.47837627649307246 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.480114438533783 | ||
| LIVE_20260723_013334 | 0.0033 | 0.48200691461563105 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.4840272855758667 | ||
| LIVE_20260723_013334 | 0.004 | 0.48621962785720824 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.48872430562973024 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.4913985204696655 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.49422652721405025 | ||
| LIVE_20260723_013334 | 0.0041 | 0.4969513010978699 | ||
| LIVE_20260723_013334 | 0.0037 | 0.49949584245681766 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.5018663430213928 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.5039222407341003 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.5058254647254944 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.5075788331031799 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.509312653541565 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.5110507583618163 | ||
| LIVE_20260723_013334 | 0.0033 | 0.5129592800140381 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.5150273656845092 | ||
| LIVE_20260723_013334 | 0.004 | 0.5172664523124695 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.519670181274414 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.5223666286468506 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.5250796723365784 | ||
| LIVE_20260723_013334 | 0.0041 | 0.5277697467803955 | ||
| LIVE_20260723_013334 | 0.0037 | 0.530290184020996 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.5325127959251403 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.5345692133903504 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.5364567542076111 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.5381872701644898 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.5399167108535766 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.541648964881897 | ||
| LIVE_20260723_013334 | 0.0033 | 0.5435497808456421 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.5456265521049499 | ||
| LIVE_20260723_013334 | 0.004 | 0.547861840724945 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.5503949284553528 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.5530603194236755 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.5559033107757568 | 0.22 | |
| LIVE_20260723_013334 | 0.0041 | 0.5587006950378417 | ||
| LIVE_20260723_013334 | 0.0037 | 0.5612245845794677 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.5635832977294921 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.5656667828559876 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.5675794601440429 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.5693241667747497 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.5710916233062744 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.5728493475914 | ||
| LIVE_20260723_013334 | 0.0033 | 0.574717915058136 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.5767714023590087 | ||
| LIVE_20260723_013334 | 0.004 | 0.5790029740333557 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.5815603232383728 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.5842477321624755 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.5870675230026245 | ||
| LIVE_20260723_013334 | 0.0041 | 0.5897495055198669 | ||
| LIVE_20260723_013334 | 0.0037 | 0.5922680568695068 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.5946268510818481 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.5966865062713622 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.5985956263542175 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.597 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.595 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.603 | ||
| LIVE_20260723_013334 | 0.0033 | 0.6057509994506836 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.6078206324577331 | ||
| LIVE_20260723_013334 | 0.004 | 0.6100264859199523 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.6125138354301453 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.6152514076232909 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.6179694604873657 | ||
| LIVE_20260723_013334 | 0.0041 | 0.6206506896018982 | ||
| LIVE_20260723_013334 | 0.0037 | 0.619 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.6 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.595 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.602 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.618 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.6330246663093566 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.6347773313522338 | ||
| LIVE_20260723_013334 | 0.0033 | 0.6366993188858032 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.6387664890289306 | ||
| LIVE_20260723_013334 | 0.004 | 0.6410031270980835 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.6434060359001159 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.6460920333862304 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.62 | ||
| LIVE_20260723_013334 | 0.0041 | 0.598 | ||
| LIVE_20260723_013334 | 0.0037 | 0.597 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.612 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.635 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.659 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.6622364211082459 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.6639400601387024 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.6656886219978333 | ||
| LIVE_20260723_013334 | 0.0033 | 0.6676085138320922 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.6696503996849059 | ||
| LIVE_20260723_013334 | 0.004 | 0.654 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.623 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.6 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.596 | ||
| LIVE_20260723_013334 | 0.0041 | 0.615 | ||
| LIVE_20260723_013334 | 0.0037 | 0.645 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.673 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.6894103169441224 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.6913261198997498 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.693202383518219 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.685 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.667 | ||
| LIVE_20260723_013334 | 0.0033 | 0.643 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.619 | ||
| LIVE_20260723_013334 | 0.004 | 0.6 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.596 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.612 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.644 | ||
| LIVE_20260723_013334 | 0.0041 | 0.677 | ||
| LIVE_20260723_013334 | 0.0037 | 0.697 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.699 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.688 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.669 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.646 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.625 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.607 | ||
| LIVE_20260723_013334 | 0.0033 | 0.596 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.597 | ||
| LIVE_20260723_013334 | 0.004 | 0.612 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.64 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.673 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.696 | ||
| LIVE_20260723_013334 | 0.0041 | 0.698 | ||
| LIVE_20260723_013334 | 0.0037 | 0.68 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.654 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.628 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.608 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.597 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.595 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.603 | ||
| LIVE_20260723_013334 | 0.0033 | 0.62 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.645 | ||
| LIVE_20260723_013334 | 0.004 | 0.673 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.694 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.699 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.681 | ||
| LIVE_20260723_013334 | 0.0041 | 0.649 | ||
| LIVE_20260723_013334 | 0.0037 | 0.619 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.6 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.595 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.602 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.618 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.638 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.661 | ||
| LIVE_20260723_013334 | 0.0033 | 0.682 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.697 | ||
| LIVE_20260723_013334 | 0.004 | 0.699 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.684 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.654 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.62 | ||
| LIVE_20260723_013334 | 0.0041 | 0.598 | ||
| LIVE_20260723_013334 | 0.0037 | 0.597 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.612 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.635 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.659 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.679 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.694 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.7 | ||
| LIVE_20260723_013334 | 0.0033 | 0.696 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.68 | ||
| LIVE_20260723_013334 | 0.004 | 0.654 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.621 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.595 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.588 | ||
| LIVE_20260723_013334 | 0.0041 | 0.604 | ||
| LIVE_20260723_013334 | 0.0037 | 0.63 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.655 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.67 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.676 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.671 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.657 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.637 | ||
| LIVE_20260723_013334 | 0.0033 | 0.612 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.587 | ||
| LIVE_20260723_013334 | 0.004 | 0.567 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.56 | 0.33 | |
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.572 | 0.33 | |
| LIVE_20260723_013334 | 0.004416666666666667 | 0.599 | ||
| LIVE_20260723_013334 | 0.0041 | 0.626 | ||
| LIVE_20260723_013334 | 0.0037 | 0.642 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.641 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.628 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.608 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.586 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.565 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.547 | ||
| LIVE_20260723_013334 | 0.0033 | 0.535 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.533 | ||
| LIVE_20260723_013334 | 0.004 | 0.544 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.566 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.592 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.61 | ||
| LIVE_20260723_013334 | 0.0041 | 0.608 | ||
| LIVE_20260723_013334 | 0.0037 | 0.59 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.564 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.54 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.521 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.509 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.506 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.511 | ||
| LIVE_20260723_013334 | 0.0033 | 0.524 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.542 | ||
| LIVE_20260723_013334 | 0.004 | 0.563 | ||
| LIVE_20260723_013334 | 0.004333333333333333 | 0.578 | ||
| LIVE_20260723_013334 | 0.0045000000000000005 | 0.579 | ||
| LIVE_20260723_013334 | 0.004416666666666667 | 0.561 | ||
| LIVE_20260723_013334 | 0.0041 | 0.532 | ||
| LIVE_20260723_013334 | 0.0037 | 0.504 | ||
| LIVE_20260723_013334 | 0.003316666666666667 | 0.487 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.481 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.485 | ||
| LIVE_20260723_013334 | 0.0028333333333333335 | 0.495 | ||
| LIVE_20260723_013334 | 0.0028833333333333332 | 0.51 | ||
| LIVE_20260723_013334 | 0.0030499999999999998 | 0.526 | ||
| LIVE_20260723_013334 | 0.0033 | 0.541 | ||
| LIVE_20260723_013334 | 0.0036333333333333335 | 0.551 | ||
| LIVE_20260723_013334 | 0.004 | 0.55 | ||
| LIVE_20260723_013441 | 0.0035 | 0.3 | ||
| LIVE_20260723_013441 | 0.0038 | 0.30212247610092163 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.30447212934494017 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.3070032238960266 | ||
| LIVE_20260723_013441 | 0.003766666666666667 | 0.30951264858245847 | ||
| LIVE_20260723_013441 | 0.003433333333333333 | 0.31187643766403195 | ||
| LIVE_20260723_013441 | 0.0030833333333333333 | 0.31406633377075194 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.3159659886360168 | ||
| LIVE_20260723_013441 | 0.0025499999999999997 | 0.3177211594581604 | ||
| LIVE_20260723_013441 | 0.0024 | 0.3193231129646301 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.3207675004005432 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.3221968078613281 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.3236139702796936 | ||
| LIVE_20260723_013441 | 0.0025666666666666667 | 0.3251768565177917 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.32677684307098387 | ||
| LIVE_20260723_013441 | 0.0030666666666666668 | 0.32850247144699096 | ||
| LIVE_20260723_013441 | 0.0033833333333333337 | 0.3304117608070373 | ||
| LIVE_20260723_013441 | 0.0037 | 0.3324571919441223 | ||
| LIVE_20260723_013441 | 0.003933333333333333 | 0.33468732595443723 | ||
| LIVE_20260723_013441 | 0.004 | 0.33706854343414305 | ||
| LIVE_20260723_013441 | 0.0038666666666666667 | 0.3395764112472534 | ||
| LIVE_20260723_013441 | 0.0035666666666666668 | 0.34193978548049925 | ||
| LIVE_20260723_013441 | 0.0032166666666666667 | 0.34414207458496093 | ||
| LIVE_20260723_013441 | 0.0028833333333333332 | 0.3461761450767517 | ||
| LIVE_20260723_013441 | 0.002616666666666667 | 0.34794505119323726 | ||
| LIVE_20260723_013441 | 0.00245 | 0.34967023611068726 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.35127060890197753 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.35268666267395016 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.3541132664680481 | ||
| LIVE_20260723_013441 | 0.0025166666666666666 | 0.35554688215255736 | ||
| LIVE_20260723_013441 | 0.0027 | 0.35712291717529293 | ||
| LIVE_20260723_013441 | 0.0029666666666666665 | 0.35887134790420533 | ||
| LIVE_20260723_013441 | 0.003266666666666667 | 0.36076987981796266 | ||
| LIVE_20260723_013441 | 0.0036 | 0.3628136086463928 | ||
| LIVE_20260723_013441 | 0.0038666666666666667 | 0.36501298666000365 | ||
| LIVE_20260723_013441 | 0.004 | 0.367394859790802 | ||
| LIVE_20260723_013441 | 0.003933333333333333 | 0.3699267292022705 | ||
| LIVE_20260723_013441 | 0.003683333333333333 | 0.37228888273239136 | ||
| LIVE_20260723_013441 | 0.0033333333333333335 | 0.37452863454818724 | ||
| LIVE_20260723_013441 | 0.003 | 0.37659459114074706 | ||
| LIVE_20260723_013441 | 0.0027 | 0.37847587823867795 | ||
| LIVE_20260723_013441 | 0.0025 | 0.3802097415924072 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.3818123435974121 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.3833737802505493 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.38481836557388305 | ||
| LIVE_20260723_013441 | 0.0024666666666666665 | 0.38637524604797363 | ||
| LIVE_20260723_013441 | 0.0026333333333333334 | 0.38796688556671144 | ||
| LIVE_20260723_013441 | 0.0028666666666666662 | 0.3895507740974426 | ||
| LIVE_20260723_013441 | 0.0031666666666666666 | 0.3912991261482239 | ||
| LIVE_20260723_013441 | 0.003483333333333333 | 0.39332843065261835 | ||
| LIVE_20260723_013441 | 0.0037833333333333334 | 0.3955437469482422 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.3979517960548401 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.4004694890975952 | ||
| LIVE_20260723_013441 | 0.0037833333333333334 | 0.40300589323043823 | ||
| LIVE_20260723_013441 | 0.0034666666666666665 | 0.40536597728729246 | ||
| LIVE_20260723_013441 | 0.0031 | 0.4075767993927002 | ||
| LIVE_20260723_013441 | 0.0028 | 0.40948746919631956 | ||
| LIVE_20260723_013441 | 0.0025666666666666667 | 0.4112549328804016 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.41281351566314695 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.414392397403717 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.41583188533782955 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.41727571725845336 | ||
| LIVE_20260723_013441 | 0.0025666666666666667 | 0.41885470390319823 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.42042132854461667 | ||
| LIVE_20260723_013441 | 0.0030499999999999998 | 0.42216006278991697 | ||
| LIVE_20260723_013441 | 0.0033666666666666667 | 0.42404911041259763 | ||
| LIVE_20260723_013441 | 0.003683333333333333 | 0.4260939288139343 | ||
| LIVE_20260723_013441 | 0.003916666666666666 | 0.4283151578903198 | ||
| LIVE_20260723_013441 | 0.004 | 0.4306900191307068 | ||
| LIVE_20260723_013441 | 0.0038666666666666667 | 0.4332213306427002 | ||
| LIVE_20260723_013441 | 0.0035833333333333333 | 0.4355868601799011 | ||
| LIVE_20260723_013441 | 0.0032333333333333333 | 0.43782834053039554 | ||
| LIVE_20260723_013441 | 0.0029 | 0.4398796343803406 | ||
| LIVE_20260723_013441 | 0.0026333333333333334 | 0.44162907600402834 | ||
| LIVE_20260723_013441 | 0.00245 | 0.443231999874115 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.44483501195907593 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.44625001192092895 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.44765735626220704 | ||
| LIVE_20260723_013441 | 0.0025 | 0.4490887951850891 | ||
| LIVE_20260723_013441 | 0.0026833333333333336 | 0.4506535983085632 | ||
| LIVE_20260723_013441 | 0.00295 | 0.4523879384994507 | ||
| LIVE_20260723_013441 | 0.0032500000000000003 | 0.45429090738296507 | ||
| LIVE_20260723_013441 | 0.0035666666666666668 | 0.4563574576377869 | ||
| LIVE_20260723_013441 | 0.00385 | 0.45856499195098877 | ||
| LIVE_20260723_013441 | 0.004 | 0.46095190286636356 | ||
| LIVE_20260723_013441 | 0.0039499999999999995 | 0.46349954366683954 | ||
| LIVE_20260723_013441 | 0.0037 | 0.46588222742080687 | ||
| LIVE_20260723_013441 | 0.0033666666666666667 | 0.4682393312454224 | ||
| LIVE_20260723_013441 | 0.0030166666666666666 | 0.470313401222229 | ||
| LIVE_20260723_013441 | 0.0027166666666666667 | 0.47220170497894287 | ||
| LIVE_20260723_013441 | 0.0025166666666666666 | 0.4739682841300964 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.4755657577514648 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.47715004205703737 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.4785706639289856 | ||
| LIVE_20260723_013441 | 0.00245 | 0.4800084471702576 | ||
| LIVE_20260723_013441 | 0.002616666666666667 | 0.4815936517715454 | ||
| LIVE_20260723_013441 | 0.00285 | 0.4833145999908447 | ||
| LIVE_20260723_013441 | 0.0031333333333333335 | 0.4850554800033569 | ||
| LIVE_20260723_013441 | 0.00345 | 0.4869671416282654 | ||
| LIVE_20260723_013441 | 0.003766666666666667 | 0.4891713428497314 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.4915225839614868 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.493961112499237 | ||
| LIVE_20260723_013441 | 0.003816666666666667 | 0.49646772861480715 | ||
| LIVE_20260723_013441 | 0.003483333333333333 | 0.4988742017745972 | ||
| LIVE_20260723_013441 | 0.0031333333333333335 | 0.5010821342468261 | ||
| LIVE_20260723_013441 | 0.002816666666666667 | 0.5030095052719116 | ||
| LIVE_20260723_013441 | 0.0025833333333333333 | 0.5047733044624328 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.506348147392273 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.5079227113723754 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.5093672776222229 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.5108116412162781 | ||
| LIVE_20260723_013441 | 0.0025499999999999997 | 0.5124115896224976 | ||
| LIVE_20260723_013441 | 0.0027500000000000003 | 0.5140071296691895 | ||
| LIVE_20260723_013441 | 0.003033333333333333 | 0.5157742285728455 | ||
| LIVE_20260723_013441 | 0.0033333333333333335 | 0.5177000379562378 | ||
| LIVE_20260723_013441 | 0.00365 | 0.5197421145439147 | ||
| LIVE_20260723_013441 | 0.0039000000000000003 | 0.5219549369812011 | ||
| LIVE_20260723_013441 | 0.004 | 0.5243474149703979 | ||
| LIVE_20260723_013441 | 0.0039000000000000003 | 0.526896014213562 | ||
| LIVE_20260723_013441 | 0.0036166666666666665 | 0.5292473745346069 | ||
| LIVE_20260723_013441 | 0.003266666666666667 | 0.5314314413070679 | ||
| LIVE_20260723_013441 | 0.0029166666666666664 | 0.5334689569473267 | ||
| LIVE_20260723_013441 | 0.00265 | 0.5353744435310364 | ||
| LIVE_20260723_013441 | 0.0024666666666666665 | 0.5369808936119079 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.5385858201980591 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.5400305795669555 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.5414745378494262 | ||
| LIVE_20260723_013441 | 0.002483333333333333 | 0.5430418705940246 | ||
| LIVE_20260723_013441 | 0.0026666666666666666 | 0.5446112632751465 | ||
| LIVE_20260723_013441 | 0.0029166666666666664 | 0.5463619995117187 | ||
| LIVE_20260723_013441 | 0.0032166666666666667 | 0.5481176233291626 | ||
| LIVE_20260723_013441 | 0.0035499999999999998 | 0.5501641106605529 | ||
| LIVE_20260723_013441 | 0.0038333333333333336 | 0.5523911380767822 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.5547999453544616 | ||
| LIVE_20260723_013441 | 0.0039499999999999995 | 0.5572097849845886 | ||
| LIVE_20260723_013441 | 0.0037333333333333333 | 0.5596034836769104 | ||
| LIVE_20260723_013441 | 0.0034 | 0.5618555212020874 | ||
| LIVE_20260723_013441 | 0.003033333333333333 | 0.5640346336364745 | ||
| LIVE_20260723_013441 | 0.0027500000000000003 | 0.5659336256980896 | 0.11 | |
| LIVE_20260723_013441 | 0.002533333333333333 | 0.5676805186271667 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.5692646670341492 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.5708329415321349 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.572247393131256 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.5736875367164611 | ||
| LIVE_20260723_013441 | 0.0026 | 0.5752926993370056 | ||
| LIVE_20260723_013441 | 0.002816666666666667 | 0.5768778753280639 | ||
| LIVE_20260723_013441 | 0.0031 | 0.5786120963096618 | ||
| LIVE_20260723_013441 | 0.003433333333333333 | 0.5805123972892761 | ||
| LIVE_20260723_013441 | 0.0037333333333333333 | 0.5827198672294617 | ||
| LIVE_20260723_013441 | 0.0039499999999999995 | 0.5849664640426635 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.587374038696289 | ||
| LIVE_20260723_013441 | 0.0038333333333333336 | 0.5899020195007324 | ||
| LIVE_20260723_013441 | 0.0035166666666666666 | 0.5923030352592468 | ||
| LIVE_20260723_013441 | 0.0031666666666666666 | 0.5945496273040771 | ||
| LIVE_20260723_013441 | 0.00285 | 0.5964606785774231 | ||
| LIVE_20260723_013441 | 0.0026 | 0.5982004761695862 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.599774956703186 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.6013528680801391 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.596 | ||
| LIVE_20260723_013441 | 0.0024 | 0.596 | ||
| LIVE_20260723_013441 | 0.002533333333333333 | 0.602 | ||
| LIVE_20260723_013441 | 0.0027333333333333333 | 0.6073383498191833 | ||
| LIVE_20260723_013441 | 0.003 | 0.6091040468215942 | ||
| LIVE_20260723_013441 | 0.003316666666666667 | 0.6110307240486145 | ||
| LIVE_20260723_013441 | 0.0036333333333333335 | 0.6130724954605102 | ||
| LIVE_20260723_013441 | 0.0038833333333333337 | 0.615280647277832 | ||
| LIVE_20260723_013441 | 0.004 | 0.6176632237434387 | ||
| LIVE_20260723_013441 | 0.003916666666666666 | 0.6200721716880797 | ||
| LIVE_20260723_013441 | 0.00365 | 0.6224810338020323 | ||
| LIVE_20260723_013441 | 0.0033 | 0.6247293806076049 | ||
| LIVE_20260723_013441 | 0.00295 | 0.605 | ||
| LIVE_20260723_013441 | 0.0026666666666666666 | 0.596 | ||
| LIVE_20260723_013441 | 0.002483333333333333 | 0.596 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.604 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.617 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.634 | ||
| LIVE_20260723_013441 | 0.002483333333333333 | 0.636378698348999 | ||
| LIVE_20260723_013441 | 0.00265 | 0.6379603099822998 | ||
| LIVE_20260723_013441 | 0.0029 | 0.639566695690155 | ||
| LIVE_20260723_013441 | 0.0032 | 0.6413376188278197 | ||
| LIVE_20260723_013441 | 0.0035166666666666666 | 0.6434007358551025 | ||
| LIVE_20260723_013441 | 0.003816666666666667 | 0.6456482291221619 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.6480572700500489 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.63 | 0.22 | |
| LIVE_20260723_013441 | 0.0037500000000000003 | 0.605 | ||
| LIVE_20260723_013441 | 0.0034166666666666664 | 0.595 | ||
| LIVE_20260723_013441 | 0.0030666666666666668 | 0.6 | ||
| LIVE_20260723_013441 | 0.002766666666666667 | 0.616 | ||
| LIVE_20260723_013441 | 0.002533333333333333 | 0.635 | ||
| LIVE_20260723_013441 | 0.0024 | 0.655 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.6644145941734314 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.6658491158485412 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.6672835326194763 | ||
| LIVE_20260723_013441 | 0.0025833333333333333 | 0.6688889312744141 | ||
| LIVE_20260723_013441 | 0.0028 | 0.6704942631721497 | ||
| LIVE_20260723_013441 | 0.0030833333333333333 | 0.6722109127044678 | ||
| LIVE_20260723_013441 | 0.0034 | 0.662 | ||
| LIVE_20260723_013441 | 0.0037166666666666667 | 0.636 | ||
| LIVE_20260723_013441 | 0.003933333333333333 | 0.61 | ||
| LIVE_20260723_013441 | 0.004 | 0.596 | ||
| LIVE_20260723_013441 | 0.00385 | 0.599 | ||
| LIVE_20260723_013441 | 0.0035499999999999998 | 0.619 | ||
| LIVE_20260723_013441 | 0.0032 | 0.645 | ||
| LIVE_20260723_013441 | 0.0028666666666666662 | 0.67 | ||
| LIVE_20260723_013441 | 0.002616666666666667 | 0.688 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.6934745597839356 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.6950541090965271 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.695 | ||
| LIVE_20260723_013441 | 0.0024 | 0.685 | ||
| LIVE_20260723_013441 | 0.0025166666666666666 | 0.67 | ||
| LIVE_20260723_013441 | 0.0027166666666666667 | 0.651 | ||
| LIVE_20260723_013441 | 0.002983333333333333 | 0.629 | ||
| LIVE_20260723_013441 | 0.0032833333333333334 | 0.61 | ||
| LIVE_20260723_013441 | 0.0036 | 0.597 | ||
| LIVE_20260723_013441 | 0.0038666666666666667 | 0.597 | ||
| LIVE_20260723_013441 | 0.004 | 0.613 | ||
| LIVE_20260723_013441 | 0.003933333333333333 | 0.641 | ||
| LIVE_20260723_013441 | 0.0036666666666666666 | 0.672 | ||
| LIVE_20260723_013441 | 0.003316666666666667 | 0.693 | ||
| LIVE_20260723_013441 | 0.002983333333333333 | 0.7 | ||
| LIVE_20260723_013441 | 0.0027 | 0.696 | ||
| LIVE_20260723_013441 | 0.0025 | 0.683 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.667 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.649 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.63 | ||
| LIVE_20260723_013441 | 0.0024666666666666665 | 0.614 | ||
| LIVE_20260723_013441 | 0.0026333333333333334 | 0.602 | ||
| LIVE_20260723_013441 | 0.0028833333333333332 | 0.595 | ||
| LIVE_20260723_013441 | 0.0031666666666666666 | 0.598 | ||
| LIVE_20260723_013441 | 0.0035 | 0.611 | ||
| LIVE_20260723_013441 | 0.0037833333333333334 | 0.635 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.664 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.689 | ||
| LIVE_20260723_013441 | 0.0037833333333333334 | 0.7 | ||
| LIVE_20260723_013441 | 0.00345 | 0.693 | ||
| LIVE_20260723_013441 | 0.0031 | 0.674 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.651 | ||
| LIVE_20260723_013441 | 0.0025499999999999997 | 0.629 | ||
| LIVE_20260723_013441 | 0.0024 | 0.612 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.601 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.595 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.597 | ||
| LIVE_20260723_013441 | 0.0025666666666666667 | 0.604 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.619 | ||
| LIVE_20260723_013441 | 0.0030499999999999998 | 0.639 | ||
| LIVE_20260723_013441 | 0.0033666666666666667 | 0.663 | ||
| LIVE_20260723_013441 | 0.003683333333333333 | 0.685 | ||
| LIVE_20260723_013441 | 0.003916666666666666 | 0.699 | ||
| LIVE_20260723_013441 | 0.004 | 0.696 | ||
| LIVE_20260723_013441 | 0.0038666666666666667 | 0.676 | ||
| LIVE_20260723_013441 | 0.0035833333333333333 | 0.648 | ||
| LIVE_20260723_013441 | 0.0032333333333333333 | 0.62 | ||
| LIVE_20260723_013441 | 0.0029 | 0.603 | ||
| LIVE_20260723_013441 | 0.0026333333333333334 | 0.595 | ||
| LIVE_20260723_013441 | 0.00245 | 0.597 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.606 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.62 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.637 | ||
| LIVE_20260723_013441 | 0.0025 | 0.656 | ||
| LIVE_20260723_013441 | 0.0027 | 0.674 | ||
| LIVE_20260723_013441 | 0.00295 | 0.69 | ||
| LIVE_20260723_013441 | 0.0032500000000000003 | 0.699 | ||
| LIVE_20260723_013441 | 0.0035833333333333333 | 0.698 | ||
| LIVE_20260723_013441 | 0.00385 | 0.682 | ||
| LIVE_20260723_013441 | 0.004 | 0.655 | ||
| LIVE_20260723_013441 | 0.003933333333333333 | 0.624 | ||
| LIVE_20260723_013441 | 0.0037 | 0.602 | ||
| LIVE_20260723_013441 | 0.00335 | 0.595 | ||
| LIVE_20260723_013441 | 0.0030166666666666666 | 0.603 | ||
| LIVE_20260723_013441 | 0.0027166666666666667 | 0.619 | ||
| LIVE_20260723_013441 | 0.0025 | 0.639 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.659 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.674 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.686 | ||
| LIVE_20260723_013441 | 0.00245 | 0.692 | ||
| LIVE_20260723_013441 | 0.002616666666666667 | 0.692 | ||
| LIVE_20260723_013441 | 0.00285 | 0.685 | ||
| LIVE_20260723_013441 | 0.0031333333333333335 | 0.668 | ||
| LIVE_20260723_013441 | 0.0034666666666666665 | 0.644 | ||
| LIVE_20260723_013441 | 0.003766666666666667 | 0.615 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.589 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.575 | ||
| LIVE_20260723_013441 | 0.0038 | 0.579 | ||
| LIVE_20260723_013441 | 0.003483333333333333 | 0.597 | ||
| LIVE_20260723_013441 | 0.0031333333333333335 | 0.62 | ||
| LIVE_20260723_013441 | 0.002816666666666667 | 0.64 | 0.33 | |
| LIVE_20260723_013441 | 0.0025666666666666667 | 0.653 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.659 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.658 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.651 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.638 | ||
| LIVE_20260723_013441 | 0.0025499999999999997 | 0.621 | ||
| LIVE_20260723_013441 | 0.002766666666666667 | 0.601 | ||
| LIVE_20260723_013441 | 0.003033333333333333 | 0.579 | ||
| LIVE_20260723_013441 | 0.00335 | 0.56 | ||
| LIVE_20260723_013441 | 0.0036666666666666666 | 0.548 | ||
| LIVE_20260723_013441 | 0.003916666666666666 | 0.548 | ||
| LIVE_20260723_013441 | 0.004 | 0.562 | ||
| LIVE_20260723_013441 | 0.0038833333333333337 | 0.587 | ||
| LIVE_20260723_013441 | 0.0036 | 0.61 | ||
| LIVE_20260723_013441 | 0.0032500000000000003 | 0.624 | ||
| LIVE_20260723_013441 | 0.0029166666666666664 | 0.626 | ||
| LIVE_20260723_013441 | 0.00265 | 0.618 | ||
| LIVE_20260723_013441 | 0.0024666666666666665 | 0.604 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.587 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.569 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.551 | ||
| LIVE_20260723_013441 | 0.0025 | 0.536 | ||
| LIVE_20260723_013441 | 0.0026833333333333336 | 0.524 | ||
| LIVE_20260723_013441 | 0.0029333333333333334 | 0.518 | ||
| LIVE_20260723_013441 | 0.0032333333333333333 | 0.52 | ||
| LIVE_20260723_013441 | 0.0035499999999999998 | 0.531 | ||
| LIVE_20260723_013441 | 0.0038333333333333336 | 0.551 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.573 | 0.44 | |
| LIVE_20260723_013441 | 0.0039499999999999995 | 0.59 | 0.44 | |
| LIVE_20260723_013441 | 0.0037166666666666667 | 0.593 | ||
| LIVE_20260723_013441 | 0.0033833333333333337 | 0.582 | ||
| LIVE_20260723_013441 | 0.003033333333333333 | 0.562 | ||
| LIVE_20260723_013441 | 0.0027333333333333333 | 0.54 | ||
| LIVE_20260723_013441 | 0.0025166666666666666 | 0.521 | ||
| LIVE_20260723_013441 | 0.0023833333333333332 | 0.506 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.496 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.491 | ||
| LIVE_20260723_013441 | 0.00245 | 0.492 | ||
| LIVE_20260723_013441 | 0.0026 | 0.498 | ||
| LIVE_20260723_013441 | 0.0028333333333333335 | 0.509 | ||
| LIVE_20260723_013441 | 0.0031166666666666665 | 0.525 | ||
| LIVE_20260723_013441 | 0.003433333333333333 | 0.542 | ||
| LIVE_20260723_013441 | 0.0037500000000000003 | 0.557 | ||
| LIVE_20260723_013441 | 0.0039499999999999995 | 0.563 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.555 | ||
| LIVE_20260723_013441 | 0.003816666666666667 | 0.534 | ||
| LIVE_20260723_013441 | 0.0035166666666666666 | 0.508 | ||
| LIVE_20260723_013441 | 0.00315 | 0.486 | ||
| LIVE_20260723_013441 | 0.0028333333333333335 | 0.472 | ||
| LIVE_20260723_013441 | 0.0025833333333333333 | 0.466 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.467 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.473 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.483 | ||
| LIVE_20260723_013441 | 0.0024 | 0.495 | ||
| LIVE_20260723_013441 | 0.002533333333333333 | 0.509 | ||
| LIVE_20260723_013441 | 0.0027333333333333333 | 0.521 | ||
| LIVE_20260723_013441 | 0.003 | 0.53 | ||
| LIVE_20260723_013441 | 0.003316666666666667 | 0.534 | ||
| LIVE_20260723_013441 | 0.0036333333333333335 | 0.529 | ||
| LIVE_20260723_013441 | 0.0039000000000000003 | 0.513 | ||
| LIVE_20260723_013441 | 0.004 | 0.489 | ||
| LIVE_20260723_013441 | 0.0039000000000000003 | 0.464 | ||
| LIVE_20260723_013441 | 0.0036333333333333335 | 0.447 | ||
| LIVE_20260723_013441 | 0.0032833333333333334 | 0.442 | ||
| LIVE_20260723_013441 | 0.00295 | 0.447 | ||
| LIVE_20260723_013441 | 0.0026666666666666666 | 0.459 | ||
| LIVE_20260723_013441 | 0.002483333333333333 | 0.472 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.485 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.495 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.503 | ||
| LIVE_20260723_013441 | 0.002483333333333333 | 0.507 | ||
| LIVE_20260723_013441 | 0.00265 | 0.506 | ||
| LIVE_20260723_013441 | 0.0029 | 0.499 | ||
| LIVE_20260723_013441 | 0.0032 | 0.486 | ||
| LIVE_20260723_013441 | 0.0035166666666666666 | 0.467 | ||
| LIVE_20260723_013441 | 0.003816666666666667 | 0.446 | ||
| LIVE_20260723_013441 | 0.0039833333333333335 | 0.428 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.42 | ||
| LIVE_20260723_013441 | 0.0037500000000000003 | 0.425 | ||
| LIVE_20260723_013441 | 0.0034166666666666664 | 0.44 | 0.56 | |
| LIVE_20260723_013441 | 0.0030666666666666668 | 0.456 | 0.56 | |
| LIVE_20260723_013441 | 0.002766666666666667 | 0.47 | ||
| LIVE_20260723_013441 | 0.002533333333333333 | 0.479 | ||
| LIVE_20260723_013441 | 0.0024 | 0.482 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.481 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.475 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.465 | ||
| LIVE_20260723_013441 | 0.0025833333333333333 | 0.452 | ||
| LIVE_20260723_013441 | 0.0028 | 0.437 | ||
| LIVE_20260723_013441 | 0.0030833333333333333 | 0.421 | ||
| LIVE_20260723_013441 | 0.0034 | 0.408 | ||
| LIVE_20260723_013441 | 0.0037166666666666667 | 0.4 | ||
| LIVE_20260723_013441 | 0.003933333333333333 | 0.402 | ||
| LIVE_20260723_013441 | 0.004 | 0.415 | ||
| LIVE_20260723_013441 | 0.00385 | 0.433 | ||
| LIVE_20260723_013441 | 0.0035499999999999998 | 0.45 | ||
| LIVE_20260723_013441 | 0.0031833333333333336 | 0.459 | 0.67 | |
| LIVE_20260723_013441 | 0.0028666666666666662 | 0.459 | 0.67 | |
| LIVE_20260723_013441 | 0.002616666666666667 | 0.452 | ||
| LIVE_20260723_013441 | 0.0024333333333333334 | 0.442 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.429 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.416 | ||
| LIVE_20260723_013441 | 0.0024 | 0.404 | ||
| LIVE_20260723_013441 | 0.0025166666666666666 | 0.393 | ||
| LIVE_20260723_013441 | 0.0027166666666666667 | 0.385 | ||
| LIVE_20260723_013441 | 0.002983333333333333 | 0.382 | ||
| LIVE_20260723_013441 | 0.0032833333333333334 | 0.384 | ||
| LIVE_20260723_013441 | 0.0036166666666666665 | 0.394 | ||
| LIVE_20260723_013441 | 0.0038666666666666667 | 0.409 | ||
| LIVE_20260723_013441 | 0.004 | 0.426 | ||
| LIVE_20260723_013441 | 0.003916666666666666 | 0.437 | ||
| LIVE_20260723_013441 | 0.0036666666666666666 | 0.438 | ||
| LIVE_20260723_013441 | 0.003316666666666667 | 0.429 | ||
| LIVE_20260723_013441 | 0.002983333333333333 | 0.414 | ||
| LIVE_20260723_013441 | 0.0027 | 0.398 | ||
| LIVE_20260723_013441 | 0.002483333333333333 | 0.385 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.374 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.368 | ||
| LIVE_20260723_013441 | 0.0023666666666666667 | 0.365 | ||
| LIVE_20260723_013441 | 0.0024666666666666665 | 0.367 | ||
| LIVE_20260723_013441 | 0.0026333333333333334 | 0.372 | ||
| LIVE_20260723_013441 | 0.0028833333333333332 | 0.381 | ||
| LIVE_20260723_013441 | 0.0031666666666666666 | 0.394 | ||
| LIVE_20260723_013441 | 0.0035 | 0.407 | ||
| LIVE_20260723_013441 | 0.0037833333333333334 | 0.418 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.421 | ||
| LIVE_20260723_013441 | 0.003966666666666666 | 0.414 | ||
| LIVE_20260723_013441 | 0.0037833333333333334 | 0.397 | ||
| LIVE_20260723_013441 | 0.00345 | 0.378 | ||
| LIVE_20260723_013441 | 0.0031 | 0.363 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.354 | ||
| LIVE_20260723_013441 | 0.0025499999999999997 | 0.351 | ||
| LIVE_20260723_013441 | 0.0024 | 0.352 | ||
| LIVE_20260723_013441 | 0.0023333333333333335 | 0.358 | ||
| LIVE_20260723_013441 | 0.0023499999999999997 | 0.366 | ||
| LIVE_20260723_013441 | 0.0024166666666666664 | 0.376 | ||
| LIVE_20260723_013441 | 0.0025666666666666667 | 0.386 | ||
| LIVE_20260723_013441 | 0.0027833333333333334 | 0.395 | ||
| LIVE_20260723_013441 | 0.0030499999999999998 | 0.402 | ||
| LIVE_20260723_013441 | 0.0033666666666666667 | 0.405 | ||
| LIVE_20260723_013441 | 0.003683333333333333 | 0.4 | ||
| LIVE_20260723_013441 | 0.003916666666666666 | 0.387 | ||
| LIVE_20260723_013441 | 0.004 | 0.368 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | 0.78 | |
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | 0.78 | |
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | 0.89 | |
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | 0.89 | |
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | 1.00 | |
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | 1.00 | |
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_20260723_013441 | 0.0021666666666666666 | 1.0 | ||
| LIVE_session | 0.008164364984999962 | 0.0 | ||
| LIVE_session | 0.00588611394209936 | 0.4 | ||
| LIVE_session | 0.0036317805137929746 | 0.32 | 0.00 | |
| LIVE_session | 0.008135569341090675 | 0.94 | 0.00 | |
| LIVE_session | 0.0034286926320559615 | 0.36 | ||
| LIVE_session | 0.006542656159621293 | 0.0 | ||
| LIVE_session | 0.003737987407522145 | 0.14 | ||
| LIVE_session | 0.0064593753548753295 | 0.65 | ||
| LIVE_session | 0.0068836684503104295 | 0.7 | ||
| LIVE_session | 0.005915468037256725 | 0.04 | ||
| LIVE_session | 0.00643605643581104 | 0.34 | ||
| LIVE_session | 0.006672235655347638 | 0.54 | ||
| LIVE_session | 0.006228194401833319 | 0.44 | ||
| LIVE_session | 0.004293483388820335 | 0.09 | ||
| LIVE_session | 0.004844740483166063 | 0.03 | ||
| LIVE_session | 0.007727565180326195 | 0.76 | ||
| LIVE_session | 0.006139721028895817 | 0.36 | ||
| LIVE_session | 0.004932839135020697 | 0.52 | ||
| LIVE_session | 0.007028799928985956 | 0.94 | ||
| LIVE_session | 0.008190956744230092 | 0.29 | ||
| LIVE_session | 0.0035288885438021045 | 0.05 | ||
| LIVE_session | 0.0038630687800186177 | 0.81 | ||
| LIVE_session | 0.004648932732345705 | 0.02 | ||
| LIVE_session | 0.004467528267558216 | 0.66 | ||
| LIVE_session | 0.006550731706346191 | 0.55 | ||
| LIVE_session | 0.006343776192818869 | 0.62 | ||
| LIVE_session | 0.003388545039885409 | 0.07 | ||
| LIVE_session | 0.006496104225122905 | 0.67 | ||
| LIVE_session | 0.003927473543578142 | 0.25 | ||
| LIVE_session | 0.005536516131455423 | 0.78 | ||
| LIVE_session | 0.00790340660931657 | 0.67 | ||
| LIVE_session | 0.005818008167014361 | 0.29 | ||
| LIVE_session | 0.006790787073259418 | 0.14 | ||
| LIVE_session | 0.006140756609391719 | 0.44 | ||
| LIVE_session | 0.004878180445007192 | 0.48 | ||
| LIVE_session | 0.0039596973730959785 | 0.02 | ||
| LIVE_session | 0.005369850511625441 | 0.58 | ||
| LIVE_session | 0.006546901683602214 | 0.87 | ||
| LIVE_session | 0.003348017100210796 | 0.34 | ||
| LIVE_session | 0.00602510250593176 | 0.65 | ||
| LIVE_session | 0.007202665553878946 | 0.93 | 0.11 | |
| LIVE_session | 0.00592581966900257 | 0.41 | 0.11 | |
| LIVE_session | 0.004356143007192407 | 0.52 | ||
| LIVE_session | 0.0036444172888573808 | 0.04 | ||
| LIVE_session | 0.006420073562357507 | 0.2 | ||
| LIVE_session | 0.005622961243617747 | 0.12 | ||
| LIVE_session | 0.004026366676001887 | 0.53 | ||
| LIVE_session | 0.004207725695573144 | 0.03 | ||
| LIVE_session | 0.007281639195812291 | 0.99 | ||
| LIVE_session | 0.006259015271238148 | 0.76 | ||
| LIVE_session | 0.0038279562308741314 | 0.56 | ||
| LIVE_session | 0.007479276824023031 | 0.65 | ||
| LIVE_session | 0.005043695466032345 | 0.23 | ||
| LIVE_session | 0.006092062671290948 | 0.77 | ||
| LIVE_session | 0.006924230912080147 | 0.63 | ||
| LIVE_session | 0.0043905029514587504 | 0.14 | ||
| LIVE_session | 0.007751485071598547 | 0.5 | ||
| LIVE_session | 0.008174625198381892 | 0.12 | ||
| LIVE_session | 0.005001530889555855 | 0.9 | ||
| LIVE_session | 0.0045010396864811454 | 0.01 | ||
| LIVE_session | 0.004892387614123414 | 0.15 | ||
| LIVE_session | 0.007967631749183503 | 0.57 | ||
| LIVE_session | 0.0036913289792150504 | 0.25 | ||
| LIVE_session | 0.004148982544898923 | 0.29 | ||
| LIVE_session | 0.004004958396454002 | 0.47 | ||
| LIVE_session | 0.0054013474737801105 | 0.05 | ||
| LIVE_session | 0.007990459096036092 | 0.64 | ||
| LIVE_session | 0.0072187333653238265 | 0.0 | ||
| LIVE_session | 0.006961977066734593 | 0.29 | ||
| LIVE_session | 0.0037816537772240987 | 0.29 | ||
| LIVE_session | 0.007077962396477525 | 0.26 | ||
| LIVE_session | 0.005855700234990099 | 0.97 | ||
| LIVE_session | 0.003475332428898909 | 0.58 | ||
| LIVE_session | 0.003986419305961647 | 0.42 | ||
| LIVE_session | 0.0071355110022711665 | 0.48 | ||
| LIVE_session | 0.006471969312903849 | 0.51 | ||
| LIVE_session | 0.0046903137184259635 | 0.23 | ||
| LIVE_session | 0.00485322567358827 | 0.24 | ||
| LIVE_session | 0.007806625883290841 | 0.68 | ||
| LIVE_session | 0.007959652213223724 | 0.69 | ||
| LIVE_session | 0.005192911167917147 | 0.39 | 0.22 | |
| LIVE_session | 0.004688874968535229 | 0.51 | 0.22 | |
| LIVE_session | 0.003686719699922923 | 0.28 | ||
| LIVE_session | 0.0050184397819879305 | 0.35 | ||
| LIVE_session | 0.006848210713681555 | 0.47 | ||
| LIVE_session | 0.004722803034763094 | 0.7 | ||
| LIVE_session | 0.007264230592966575 | 0.6 | ||
| LIVE_session | 0.007969299059176206 | 0.19 | ||
| LIVE_session | 0.004764778517996264 | 0.96 | ||
| LIVE_session | 0.008061090341679348 | 0.33 | ||
| LIVE_session | 0.008322032366468066 | 0.11 | ||
| LIVE_session | 0.0060892321377326065 | 0.0 | ||
| LIVE_session | 0.005019259475482673 | 0.93 | ||
| LIVE_session | 0.004914756081887819 | 0.19 | ||
| LIVE_session | 0.004810246440750012 | 0.55 | ||
| LIVE_session | 0.0033399347447192118 | 0.34 | ||
| LIVE_session | 0.005910899934700076 | 0.13 | ||
| LIVE_session | 0.007974781049084436 | 0.62 | ||
| LIVE_session | 0.004448322857707762 | 0.66 | ||
| LIVE_session | 0.004617287151489977 | 0.27 | ||
| LIVE_session | 0.005744277422036566 | 0.58 | ||
| LIVE_session | 0.00541483936270283 | 0.23 | ||
| LIVE_session | 0.005883838768345621 | 0.55 | ||
| LIVE_session | 0.004858407001782001 | 0.1 | ||
| LIVE_session | 0.007433288661165606 | 0.77 | ||
| LIVE_session | 0.004671002328244609 | 0.57 | ||
| LIVE_session | 0.005250031998664348 | 0.11 | ||
| LIVE_session | 0.005818800912258476 | 0.98 | ||
| LIVE_session | 0.004471788793640342 | 0.71 | ||
| LIVE_session | 0.006241550428674179 | 0.29 | ||
| LIVE_session | 0.004935126882089071 | 0.63 | ||
| LIVE_session | 0.003949235250392474 | 0.39 | ||
| LIVE_session | 0.006443993184813616 | 0.77 | ||
| LIVE_session | 0.006644546063140944 | 0.11 | ||
| LIVE_session | 0.007124161177863777 | 0.35 | ||
| LIVE_session | 0.003759188725628311 | 0.01 | ||
| LIVE_session | 0.005921448555506885 | 0.55 | ||
| LIVE_session | 0.00678854808876775 | 0.86 | ||
| LIVE_session | 0.005424176447327652 | 0.07 | ||
| LIVE_session | 0.006746682554161469 | 0.3 | ||
| LIVE_session | 0.007598412590914341 | 0.89 | ||
| LIVE_session | 0.0037529243723962574 | 0.25 | ||
| LIVE_session | 0.005227313053788674 | 0.82 | ||
| LIVE_session | 0.006102622190611019 | 0.62 | ||
| LIVE_session | 0.00477042833220919 | 0.89 | ||
| LIVE_session | 0.0069936391488361095 | 0.44 | ||
| LIVE_session | 0.0036675048729654463 | 0.23 | ||
| LIVE_session | 0.003906282629801662 | 0.84 | ||
| LIVE_session | 0.006026120924338329 | 0.8 | ||
| LIVE_session | 0.0063200147084875756 | 0.58 | ||
| LIVE_session | 0.005849192973620359 | 0.62 | ||
| LIVE_session | 0.0038824978482490417 | 0.71 | ||
| LIVE_session | 0.006526746621741012 | 0.6 | ||
| LIVE_session | 0.00511107267544499 | 0.67 | ||
| LIVE_session | 0.006761419655323066 | 0.2 | ||
| LIVE_session | 0.0054541960459892425 | 0.15 | ||
| LIVE_session | 0.0065398065057484574 | 0.32 | ||
| LIVE_session | 0.004367736841766581 | 0.39 | ||
| LIVE_session | 0.008255517124709946 | 0.46 | ||
| LIVE_session | 0.0033434929362275655 | 0.89 | ||
| LIVE_session | 0.004021352403674222 | 0.42 | ||
| LIVE_session | 0.004725664671659939 | 0.45 | ||
| LIVE_session | 0.007609923252079136 | 0.12 | 0.33 | |
| LIVE_session | 0.00414071769227153 | 0.03 | ||
| LIVE_session | 0.003711035833636371 | 0.75 | ||
| LIVE_session | 0.0055867267716734215 | 0.6 | ||
| LIVE_session | 0.007764789884657816 | 0.13 | ||
| LIVE_session | 0.004504502687280037 | 1.0 | ||
| LIVE_session | 0.005492853465594094 | 0.29 | ||
| LIVE_session | 0.006548856810138811 | 0.85 | ||
| LIVE_session | 0.008074919732338846 | 0.79 | ||
| LIVE_session | 0.004537844878922665 | 0.78 | ||
| LIVE_session | 0.007329572094540593 | 0.6 | ||
| LIVE_session | 0.004244166712102649 | 0.05 | ||
| LIVE_session | 0.0038077023107225875 | 0.44 | ||
| LIVE_session | 0.003459679815980025 | 0.77 | ||
| LIVE_session | 0.007542215478831867 | 0.45 | ||
| LIVE_session | 0.0036586255594573654 | 0.92 | ||
| LIVE_session | 0.0049387640224758025 | 0.32 | ||
| LIVE_session | 0.005190311712467036 | 0.11 | ||
| LIVE_session | 0.004929976703121347 | 0.36 | ||
| LIVE_session | 0.005060283163242746 | 0.37 | ||
| LIVE_session | 0.004714273490502201 | 0.92 | ||
| LIVE_session | 0.008146196500513516 | 0.45 | ||
| LIVE_session | 0.006169513777725187 | 0.73 | ||
| LIVE_session | 0.008036861377018683 | 0.38 | ||
| LIVE_session | 0.007999786110178412 | 0.85 | ||
| LIVE_session | 0.006969212729788277 | 0.99 | ||
| LIVE_session | 0.0053668945152338145 | 0.2 | ||
| LIVE_session | 0.007280773414445148 | 0.68 | ||
| LIVE_session | 0.006383430616976627 | 0.69 | ||
| LIVE_session | 0.0056934905207118025 | 0.79 | ||
| LIVE_session | 0.007770496851047929 | 0.72 | ||
| LIVE_session | 0.0077156554813717325 | 0.06 | ||
| LIVE_session | 0.0038179006108190598 | 0.67 | ||
| LIVE_session | 0.0040768232047546146 | 0.15 | ||
| LIVE_session | 0.004453151328296051 | 0.54 | ||
| LIVE_session | 0.007613944260533933 | 0.99 | ||
| LIVE_session | 0.005657225288347097 | 0.07 | ||
| LIVE_session | 0.006778342452472208 | 0.51 | ||
| LIVE_session | 0.003652164527589537 | 0.28 | ||
| LIVE_session | 0.0036548297698013607 | 0.2 | ||
| LIVE_session | 0.005867709134520542 | 0.56 | ||
| LIVE_session | 0.004290625340778052 | 0.88 | ||
| LIVE_session | 0.007024752213156336 | 0.56 | ||
| LIVE_session | 0.005929330673411889 | 0.82 | ||
| LIVE_session | 0.00495316963877937 | 0.76 | ||
| LIVE_session | 0.005321824119440056 | 0.56 | ||
| LIVE_session | 0.004787075733325407 | 0.79 | ||
| LIVE_session | 0.007623403967778676 | 0.02 | ||
| LIVE_session | 0.004872330834538323 | 0.29 | ||
| LIVE_session | 0.004818473283865893 | 0.76 | ||
| LIVE_session | 0.004551424699334335 | 0.87 | ||
| LIVE_session | 0.005958450173072844 | 0.35 | ||
| LIVE_session | 0.006188432650835931 | 0.5 | ||
| LIVE_session | 0.008284745400867776 | 0.62 | ||
| LIVE_session | 0.005214989917174618 | 0.58 | ||
| LIVE_session | 0.004118919411020227 | 0.47 | ||
| LIVE_session | 0.004712587635183113 | 0.31 | ||
| LIVE_session | 0.005196553808280665 | 0.17 | ||
| LIVE_session | 0.0048715826179091615 | 0.17 | ||
| LIVE_session | 0.005148855908949201 | 0.2 | ||
| LIVE_session | 0.006273979971237649 | 0.6 | ||
| LIVE_session | 0.003507125476411716 | 0.37 | ||
| LIVE_session | 0.003958891704130058 | 0.65 | ||
| LIVE_session | 0.004182171612034988 | 0.49 | ||
| LIVE_session | 0.00616279720371389 | 0.23 | ||
| LIVE_session | 0.0060798060902820476 | 0.31 | ||
| LIVE_session | 0.004639599119000014 | 0.15 | ||
| LIVE_session | 0.005389342230324048 | 0.04 | ||
| LIVE_session | 0.005033641156077605 | 0.81 | ||
| LIVE_session | 0.0060775136392501984 | 0.37 | ||
| LIVE_session | 0.00571670355293488 | 0.8 | ||
| LIVE_session | 0.005198023243027539 | 0.1 | ||
| LIVE_session | 0.004103705277010442 | 0.55 | ||
| LIVE_session | 0.007185899104522577 | 0.97 | ||
| LIVE_session | 0.007282069373341451 | 0.09 | ||
| LIVE_session | 0.008195082081553074 | 0.85 | ||
| LIVE_session | 0.004208374832548148 | 0.77 | ||
| LIVE_session | 0.0038784982699725224 | 0.39 | ||
| LIVE_session | 0.004435519154858005 | 0.62 | ||
| LIVE_session | 0.0070310821680433545 | 0.99 | ||
| LIVE_session | 0.006947982916488463 | 0.83 | ||
| LIVE_session | 0.007770448251246818 | 0.21 | ||
| LIVE_session | 0.005407691268641697 | 0.12 | ||
| LIVE_session | 0.007189085249372751 | 0.38 | ||
| LIVE_session | 0.007686275378011315 | 0.19 | ||
| LIVE_session | 0.005381075916727174 | 0.77 | ||
| LIVE_session | 0.0041365333228516685 | 0.72 | ||
| LIVE_session | 0.004345466099645904 | 0.91 | ||
| LIVE_session | 0.007704924707266797 | 0.26 | ||
| LIVE_session | 0.0050593116023468195 | 0.54 | ||
| LIVE_session | 0.0064520439314764795 | 0.77 | ||
| LIVE_session | 0.005117304865878918 | 0.49 | ||
| LIVE_session | 0.007724238247510851 | 0.87 | ||
| LIVE_session | 0.0057516545810513625 | 0.24 | ||
| LIVE_session | 0.004150453635107712 | 0.66 | ||
| LIVE_session | 0.0036324027095576018 | 0.12 | ||
| LIVE_session | 0.00507587389556711 | 0.49 | ||
| LIVE_session | 0.0053612614562948665 | 0.7 | ||
| LIVE_session | 0.008235047917815964 | 0.07 | ||
| LIVE_session | 0.006617178198474263 | 0.73 | ||
| LIVE_session | 0.007901813575735798 | 0.48 | ||
| LIVE_session | 0.006705439628144437 | 0.07 | ||
| LIVE_session | 0.007646654822541709 | 0.03 | ||
| LIVE_session | 0.0052207000578689 | 0.32 | ||
| LIVE_session | 0.00802814277087013 | 0.37 | ||
| LIVE_session | 0.005125815198716266 | 0.88 | ||
| LIVE_session | 0.00791273075425895 | 0.52 | ||
| LIVE_session | 0.00442752033265123 | 0.25 | ||
| LIVE_session | 0.007940883505134364 | 0.5 | ||
| LIVE_session | 0.0045739734340167395 | 0.23 | ||
| LIVE_session | 0.0067297341871726 | 0.59 | ||
| LIVE_session | 0.007574423654234023 | 0.7 | ||
| LIVE_session | 0.0066995261206375355 | 0.45 | ||
| LIVE_session | 0.007698741436767794 | 0.3 | ||
| LIVE_session | 0.005111546191603525 | 0.04 | ||
| LIVE_session | 0.007042329826159787 | 0.06 | ||
| LIVE_session | 0.00749565806404385 | 0.21 | ||
| LIVE_session | 0.006558900240254364 | 0.39 | ||
| LIVE_session | 0.0034411356731284186 | 0.86 | ||
| LIVE_session | 0.0037267633079773196 | 0.58 | ||
| LIVE_session | 0.004515642157198743 | 0.49 | ||
| LIVE_session | 0.003896964725952261 | 0.55 | ||
| LIVE_session | 0.0059279290073390905 | 0.22 | 0.44 | |
| LIVE_session | 0.005211195365887424 | 0.83 | 0.44 | |
| LIVE_session | 0.004176052049725683 | 0.98 | ||
| LIVE_session | 0.007058460917493405 | 0.74 | ||
| LIVE_session | 0.006186332333788835 | 0.7 | ||
| LIVE_session | 0.003916555622283343 | 0.65 | ||
| LIVE_session | 0.007580415279117904 | 0.08 | ||
| LIVE_session | 0.005830587559749566 | 0.29 | ||
| LIVE_session | 0.007122707758168815 | 0.31 | ||
| LIVE_session | 0.0041121883854361085 | 0.22 | ||
| LIVE_session | 0.006846551132254162 | 0.84 | ||
| LIVE_session | 0.005026907533983196 | 0.55 | ||
| LIVE_session | 0.005079264114586291 | 0.5 | ||
| LIVE_session | 0.003813134063612699 | 0.91 | ||
| LIVE_session | 0.004422805391289833 | 0.19 | ||
| LIVE_session | 0.003966213150155143 | 0.57 | ||
| LIVE_session | 0.005249904500565407 | 0.89 | ||
| LIVE_session | 0.007427325416745873 | 0.94 | ||
| LIVE_session | 0.003674653984013793 | 0.92 | ||
| LIVE_session | 0.004791849868122493 | 0.14 | ||
| LIVE_session | 0.005289835595916171 | 0.41 | ||
| LIVE_session | 0.006199307080842709 | 0.96 | ||
| LIVE_session | 0.0040822145864626265 | 0.98 | ||
| LIVE_session | 0.005072267963232162 | 0.06 | ||
| LIVE_session | 0.007530111170837775 | 0.11 | ||
| LIVE_session | 0.00452507735940864 | 0.49 | ||
| LIVE_session | 0.004444232444011456 | 0.53 | ||
| LIVE_session | 0.003596725651990281 | 0.49 | ||
| LIVE_session | 0.006962732264063483 | 0.92 | ||
| LIVE_session | 0.005993700452143074 | 0.63 | ||
| LIVE_session | 0.006072509733195106 | 0.43 | ||
| LIVE_session | 0.007827236330658436 | 0.73 | ||
| LIVE_session | 0.005658584251497436 | 0.22 | ||
| LIVE_session | 0.0048151014712273605 | 0.58 | ||
| LIVE_session | 0.005915016119088558 | 0.6 | ||
| LIVE_session | 0.007134185338676043 | 0.7 | ||
| LIVE_session | 0.004898381548582964 | 0.66 | ||
| LIVE_session | 0.00494739617942142 | 0.58 | ||
| LIVE_session | 0.006036650837919746 | 0.69 | ||
| LIVE_session | 0.005053534385975976 | 0.95 | ||
| LIVE_session | 0.0033817325279152295 | 0.46 | ||
| LIVE_session | 0.003720484198784432 | 0.19 | ||
| LIVE_session | 0.005911402287319499 | 0.38 | ||
| LIVE_session | 0.006333143800764073 | 0.68 | ||
| LIVE_session | 0.006875462629836334 | 0.13 | ||
| LIVE_session | 0.006265119120303488 | 0.26 | ||
| LIVE_session | 0.008104096616628946 | 0.57 | ||
| LIVE_session | 0.007243092913168789 | 0.31 | ||
| LIVE_session | 0.0042638136069952474 | 0.8 | ||
| LIVE_session | 0.007629430694798238 | 0.7 | ||
| LIVE_session | 0.004351367855757313 | 0.28 | ||
| LIVE_session | 0.003704113218043249 | 0.68 | ||
| LIVE_session | 0.004406166600414 | 0.73 | ||
| LIVE_session | 0.005339403174581004 | 0.26 | ||
| LIVE_session | 0.007236086639454675 | 0.65 | ||
| LIVE_session | 0.0061990054944267 | 0.53 | ||
| LIVE_session | 0.004705548267350663 | 0.83 | ||
| LIVE_session | 0.0051816696644903645 | 0.62 | ||
| LIVE_session | 0.005455580922586859 | 0.98 | ||
| LIVE_session | 0.008292810298732588 | 0.8 | ||
| LIVE_session | 0.006795214013471486 | 0.54 | ||
| LIVE_session | 0.005595148566284828 | 0.48 | ||
| LIVE_session | 0.00538145401941156 | 0.35 | ||
| LIVE_session | 0.004641828944207093 | 0.87 | ||
| LIVE_session | 0.004003609551613258 | 0.31 | ||
| LIVE_session | 0.00450690970305315 | 0.18 | ||
| LIVE_session | 0.008157378550509955 | 0.67 | 0.56 | |
| LIVE_session | 0.0048057568876578175 | 0.33 | ||
| LIVE_session | 0.004342872182608487 | 0.24 | ||
| LIVE_session | 0.004267352293190951 | 0.49 | ||
| LIVE_session | 0.005054856689550067 | 1.0 | ||
| LIVE_session | 0.0054612294585184564 | 0.46 | ||
| LIVE_session | 0.007138213696928896 | 0.73 | ||
| LIVE_session | 0.0077199414903298775 | 0.23 | ||
| LIVE_session | 0.005836490124385916 | 0.3 | ||
| LIVE_session | 0.005077925442957465 | 0.18 | ||
| LIVE_session | 0.0048849411867690675 | 0.69 | ||
| LIVE_session | 0.00815478606991784 | 0.71 | ||
| LIVE_session | 0.0055818354763925255 | 0.69 | ||
| LIVE_session | 0.006869446229578063 | 0.74 | ||
| LIVE_session | 0.007020133171045616 | 0.5 | ||
| LIVE_session | 0.007365782541843268 | 0.48 | ||
| LIVE_session | 0.007484442427747936 | 0.06 | ||
| LIVE_session | 0.005224085744284971 | 0.38 | ||
| LIVE_session | 0.0037401994299855594 | 0.35 | ||
| LIVE_session | 0.004961009506227369 | 0.05 | ||
| LIVE_session | 0.008315813284510313 | 0.81 | ||
| LIVE_session | 0.005005535337627251 | 0.04 | ||
| LIVE_session | 0.004256332688065267 | 0.24 | ||
| LIVE_session | 0.004051943056202624 | 0.6 | ||
| LIVE_session | 0.007995771276384867 | 0.86 | ||
| LIVE_session | 0.008221534635578806 | 0.39 | ||
| LIVE_session | 0.006108669221223566 | 0.02 | ||
| LIVE_session | 0.0056835450548800796 | 0.12 | ||
| LIVE_session | 0.005027508845651582 | 0.25 | ||
| LIVE_session | 0.0063348265037336034 | 0.13 | ||
| LIVE_session | 0.005489131188682893 | 0.77 | ||
| LIVE_session | 0.006983372128826483 | 0.67 | ||
| LIVE_session | 0.005927381051254443 | 0.68 | ||
| LIVE_session | 0.003868013527640402 | 0.46 | ||
| LIVE_session | 0.006182510583249479 | 0.32 | ||
| LIVE_session | 0.005294677711118441 | 0.95 | ||
| LIVE_session | 0.003968670726067159 | 0.96 | ||
| LIVE_session | 0.006467044650341114 | 0.61 | ||
| LIVE_session | 0.005626621232506571 | 0.5 | ||
| LIVE_session | 0.003531115466619676 | 0.17 | ||
| LIVE_session | 0.005832820970568011 | 0.97 | ||
| LIVE_session | 0.003369141295454584 | 0.75 | ||
| LIVE_session | 0.003339429150612054 | 0.41 | ||
| LIVE_session | 0.0034883221470917206 | 0.38 | ||
| LIVE_session | 0.004060684424295834 | 0.52 | ||
| LIVE_session | 0.006915454047085073 | 0.51 | ||
| LIVE_session | 0.008066188353206789 | 0.68 | ||
| LIVE_session | 0.005539600997671323 | 0.79 | ||
| LIVE_session | 0.006785073695549088 | 0.56 | ||
| LIVE_session | 0.00800193374445165 | 0.31 | ||
| LIVE_session | 0.007294404508320996 | 0.25 | ||
| LIVE_session | 0.003984461002585721 | 0.58 | ||
| LIVE_session | 0.0055464408503602715 | 0.35 | ||
| LIVE_session | 0.00359475018141793 | 0.19 | ||
| LIVE_session | 0.004844179436659555 | 0.47 | ||
| LIVE_session | 0.007591658925167303 | 0.77 | ||
| LIVE_session | 0.005226193868903942 | 0.65 | ||
| LIVE_session | 0.0064885096061970725 | 0.32 | ||
| LIVE_session | 0.004251245958541234 | 0.34 | ||
| LIVE_session | 0.00814356602267435 | 0.39 | ||
| LIVE_session | 0.006315761464915243 | 0.48 | ||
| LIVE_session | 0.007898231136974363 | 0.85 | ||
| LIVE_session | 0.004538482514712969 | 0.16 | ||
| LIVE_session | 0.0056315707163748984 | 0.36 | ||
| LIVE_session | 0.005749977559319686 | 0.82 | ||
| LIVE_session | 0.004186377368696012 | 0.71 | ||
| LIVE_session | 0.008042191933739796 | 0.53 | ||
| LIVE_session | 0.007314375534157435 | 0.63 | ||
| LIVE_session | 0.004644107865821502 | 0.71 | ||
| LIVE_session | 0.007232465549135562 | 0.58 | ||
| LIVE_session | 0.008144318815613881 | 0.98 | ||
| LIVE_session | 0.004724056059975987 | 0.55 | ||
| LIVE_session | 0.007459612481454897 | 0.91 | ||
| LIVE_session | 0.006495271486650434 | 0.45 | ||
| LIVE_session | 0.007179545279039773 | 0.19 | ||
| LIVE_session | 0.006471241613876267 | 0.02 | ||
| LIVE_session | 0.005041342132605421 | 0.17 | ||
| LIVE_session | 0.00584602884881818 | 0.15 | ||
| LIVE_session | 0.0055343926851272205 | 0.6 | ||
| LIVE_session | 0.0060536294482187464 | 0.96 | ||
| LIVE_session | 0.005669496892251811 | 0.27 | ||
| LIVE_session | 0.005610396933520352 | 0.1 | ||
| LIVE_session | 0.007491247548220978 | 0.41 | ||
| LIVE_session | 0.007358162921293845 | 0.03 | ||
| LIVE_session | 0.008258460825444267 | 0.27 | ||
| LIVE_session | 0.007726458319461597 | 0.88 | ||
| LIVE_session | 0.004222765483745629 | 0.57 | ||
| LIVE_session | 0.005481630018600447 | 1.0 | ||
| LIVE_session | 0.007693972544096815 | 0.28 | ||
| LIVE_session | 0.003992305688273746 | 0.79 | ||
| LIVE_session | 0.00347207973622357 | 0.53 | ||
| LIVE_session | 0.0033688583471305285 | 0.62 | ||
| LIVE_session | 0.006475730146442998 | 0.8 | ||
| LIVE_session | 0.006110175863784014 | 0.54 | ||
| LIVE_session | 0.005532682412153633 | 0.78 | ||
| LIVE_session | 0.0034259122553350297 | 0.15 | ||
| LIVE_session | 0.007985848931874212 | 0.36 | ||
| LIVE_session | 0.0045299874800617205 | 0.16 | ||
| LIVE_session | 0.007021171868269538 | 0.73 | ||
| LIVE_session | 0.007026223775959731 | 0.12 | ||
| LVL-Gradiant_Slow_med_fast | 0.06101666666666667 | 0.1 | 0.0 | |
| LVL-Gradiant_Slow_med_fast | 0.07555 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.06001666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.05046666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.034883333333333336 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0473 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.060083333333333336 | 1.0 | 0.1111111111111111 | |
| LVL-Gradiant_Slow_med_fast | 0.02765 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03163333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.06108333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.08006666666666667 | 0.2 | 0.2222222222222222 | |
| LVL-Gradiant_Slow_med_fast | 0.018483333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.08166666666666668 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.040183333333333335 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.06078333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0542 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.019816666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.07411666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.08055 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.051583333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.046599999999999996 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.07775 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.045483333333333334 | 1.0 | 0.3333333333333333 | |
| LVL-Gradiant_Slow_med_fast | 0.052649999999999995 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.06335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03195 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.07001666666666666 | 0.1 | 0.2222222222222222 | |
| LVL-Gradiant_Slow_med_fast | 0.04016666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.06405 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.06583333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.06106666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04858333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04151666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03818333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.034583333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.036800000000000006 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.08234999999999999 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.040383333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.052316666666666664 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.06663333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024366666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.020266666666666665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.036950000000000004 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.05255 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.057416666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.023083333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.06425 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.05703333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.05915 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.029500000000000002 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.031133333333333336 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0494 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.07061666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.07508333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.06925 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0502 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.037616666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.05473333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.07641666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.023983333333333336 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.051283333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.07433333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.060849999999999994 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.05 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.021500000000000002 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02861666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.053533333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.041216666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04116666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04493333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.017133333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.05291666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02355 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03448333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03905 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.062183333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.029616666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.06113333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.018083333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.051050000000000005 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02843333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.029766666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0832 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.07575 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.07181666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.048216666666666665 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.05338333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04206666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.06631666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.06155 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.06283333333333334 | 0.8 | 0.3333333333333333 | |
| LVL-Gradiant_Slow_med_fast | 0.07506666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.05391666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.036366666666666665 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.06351666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.07411666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0605 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.05491666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.049100000000000005 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.042383333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.05606666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.08208333333333333 | 0.5 | 0.2222222222222222 | |
| LVL-Gradiant_Slow_med_fast | 0.05856666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0308 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.07496666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01105 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04583333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04123333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.027483333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04295 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.021216666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.029866666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01788333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02051666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.00915 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03938333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04348333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.019 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04276666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.020166666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.020566666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.017233333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03445 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.028266666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024533333333333334 | 1.0 | 0.2222222222222222 | |
| LVL-Gradiant_Slow_med_fast | 0.015933333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.023133333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012433333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0362 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.027966666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009066666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.025616666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005366666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04078333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005983333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02343333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0242 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04806666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0321 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.028416666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0071333333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03245 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010166666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04081666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.011333333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.038316666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03506666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03005 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0356 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03646666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0484 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011616666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00625 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0248 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03821666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03236666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.010466666666666668 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.015633333333333332 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03901666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.027166666666666665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0126 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.033699999999999994 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0175 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.019933333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.041883333333333335 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03465 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.018533333333333336 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02588333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04496666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04276666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.029316666666666664 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03455 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.029583333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.015633333333333332 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.022883333333333332 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.009333333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.007 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.049416666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.040216666666666664 | 0.9 | 0.3333333333333333 | |
| LVL-Gradiant_Slow_med_fast | 0.02755 | 0.5 | 0.3333333333333333 | |
| LVL-Gradiant_Slow_med_fast | 0.04891666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.02383333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0221 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.035916666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04103333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03793333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.040933333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0128 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04931666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.039766666666666665 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.044000000000000004 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03191666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03721666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.009883333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.011783333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03015 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04616666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04775 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.016016666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.049133333333333334 | 1.0 | 0.4444444444444444 | |
| LVL-Gradiant_Slow_med_fast | 0.044083333333333335 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.021433333333333335 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.014366666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.025083333333333332 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03688333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03443333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0439 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007266666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03871666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03925 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.018666666666666668 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.006483333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04045 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0052833333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03963333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.006233333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0247 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02435 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.030316666666666665 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.026483333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.024833333333333332 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04401666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03855 | 0.0 | 0.4444444444444444 | |
| LVL-Gradiant_Slow_med_fast | 0.04995 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0192 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015933333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.007633333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.026533333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0381 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04928333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.018866666666666664 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.043366666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.013649999999999999 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012683333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008033333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.025333333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.018166666666666668 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0383 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.040933333333333335 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011566666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.025433333333333332 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010266666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.026233333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.022283333333333332 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.014983333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.020266666666666665 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0062833333333333335 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.033800000000000004 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.011649999999999999 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.028533333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.049633333333333335 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.030283333333333332 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0271 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.029133333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.007466666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03696666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03725 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0067 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013250000000000001 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.048766666666666666 | 0.5 | 0.5555555555555556 | |
| LVL-Gradiant_Slow_med_fast | 0.030216666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04028333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.02706666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04653333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.036083333333333335 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04961666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024399999999999998 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012466666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04691666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0069 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0318 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.020833333333333332 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.025116666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.020366666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03663333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.014216666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0464 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04416666666666667 | 0.5 | 0.4444444444444444 | |
| LVL-Gradiant_Slow_med_fast | 0.03671666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.022916666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007883333333333332 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03961666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03555 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.016416666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.032216666666666664 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.028783333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.041850000000000005 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02755 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.025133333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01015 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.021933333333333336 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.031433333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.026833333333333334 | 0.5 | 0.5555555555555556 | |
| LVL-Gradiant_Slow_med_fast | 0.010316666666666667 | 0.4 | 0.5555555555555556 | |
| LVL-Gradiant_Slow_med_fast | 0.046933333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03706666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.033699999999999994 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0382 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0109 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0131 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.013366666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009566666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.017683333333333332 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.008450000000000001 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.027683333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03445 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006633333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04181666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03818333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.035333333333333335 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0423 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.035416666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.026283333333333332 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.042466666666666666 | 0.9 | 0.4444444444444444 | |
| LVL-Gradiant_Slow_med_fast | 0.0414 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009083333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010883333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.036649999999999995 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0304 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.034583333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.033699999999999994 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011000000000000001 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.045000000000000005 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.008983333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.030933333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0404 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02035 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.031183333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.021516666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04923333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04015 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.042583333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.01375 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.018116666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0182 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009083333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.014166666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0181 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.041433333333333336 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.043050000000000005 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01796666666666667 | 0.6 | 0.5555555555555556 | |
| LVL-Gradiant_Slow_med_fast | 0.018883333333333332 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04255 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.025616666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0268 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03855 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.026983333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.017833333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.014266666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.025016666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04223333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03436666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.01515 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04003333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.036649999999999995 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.029366666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.029849999999999998 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04496666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02146666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.047266666666666665 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03473333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.017483333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.045316666666666665 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.018266666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.037950000000000005 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.046266666666666664 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02033333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.049749999999999996 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015583333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.014066666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0285 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04441666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0435 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04596666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0114 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009216666666666668 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.018500000000000003 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.039433333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.006116666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03601666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.013033333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.038266666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.016916666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.015233333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.018583333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03916666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03766666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.026000000000000002 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03273333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0475 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0412 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03663333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03496666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02835 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04881666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03343333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.046933333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.040183333333333335 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0315 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04218333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0219 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0447 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0369 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03721666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.040383333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.00635 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.022783333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008766666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03885 | 0.7 | 0.6666666666666666 | |
| LVL-Gradiant_Slow_med_fast | 0.035649999999999994 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012033333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.021266666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.02515 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04806666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.017866666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01935 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04218333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.018349999999999998 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.016116666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.029233333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.034699999999999995 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.02638333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.034050000000000004 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0351 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03983333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.026783333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04745 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0237 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03983333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.014516666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011983333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04478333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0058 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.036566666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03933333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011300000000000001 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.006466666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02765 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.005083333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03598333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01695 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.010766666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.030600000000000002 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.031466666666666664 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.032350000000000004 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04858333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.044033333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.022783333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005316666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.020833333333333332 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04831666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.024650000000000002 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.039850000000000003 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0054666666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0196 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.024883333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.026133333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02105 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.030266666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00605 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0299 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04968333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03325 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0462 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03481666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.016916666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.047716666666666664 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03783333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.033850000000000005 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04048333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.048799999999999996 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04696666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02755 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04273333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0237 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.031133333333333336 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03768333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04128333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.02783333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02765 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.017016666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.025766666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0251 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03548333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.041933333333333336 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.006383333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.018333333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.019866666666666664 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.014916666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04663333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.037766666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01205 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.016849999999999997 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.033416666666666664 | 0.8 | 0.5555555555555556 | |
| LVL-Gradiant_Slow_med_fast | 0.0209 | 0.8 | 0.5555555555555556 | |
| LVL-Gradiant_Slow_med_fast | 0.022216666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02655 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0294 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.013250000000000001 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03955 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.014233333333333332 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04586666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.040883333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012750000000000001 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011883333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.02795 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.016316666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03881666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04641666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.010983333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.025833333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010216666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.040233333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02565 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.027983333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.025816666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03815 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.014199999999999999 | 1.0 | 0.6666666666666666 | |
| LVL-Gradiant_Slow_med_fast | 0.033016666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.00625 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04545 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.016849999999999997 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.030183333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03323333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.019799999999999998 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04248333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008950000000000001 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0269 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.022233333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03816666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.015883333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006849999999999999 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.018766666666666664 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.019883333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03623333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.046266666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.025433333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03383333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.048716666666666665 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.035 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0216 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03763333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03401666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04526666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.007833333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.01145 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009583333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.013483333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0148 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01846666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.030233333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.039933333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02851666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04406666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.022083333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03713333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02605 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009116666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0325 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.023016666666666668 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0168 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04616666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.01778333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.023116666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04231666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.017316666666666664 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.028783333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0444 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.016316666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012733333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.038266666666666664 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0159 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.046983333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.018183333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0227 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.017833333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02385 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03195 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.037366666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.014483333333333332 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.029966666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.027266666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.026733333333333335 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.019950000000000002 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04555 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04991666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04955 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.044566666666666664 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.005683333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.039316666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.019066666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024966666666666668 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01405 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.022033333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03211666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0167 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.048799999999999996 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.031116666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.048183333333333335 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0245 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01983333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03216666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.008700000000000001 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03106666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03295 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011616666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.048133333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.022433333333333336 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03231666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012633333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024950000000000003 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.022716666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.011649999999999999 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.026766666666666668 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0455 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.049716666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.029683333333333332 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.044566666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.012633333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04058333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01838333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.028133333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.025733333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04475 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.036616666666666665 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04883333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04278333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.035333333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0187 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.033466666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.020383333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.00555 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.020966666666666668 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.033016666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0455 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.013016666666666668 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.023183333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02998333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.035050000000000005 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01285 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.030883333333333332 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0318 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03666666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04641666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.02955 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03238333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03303333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.040216666666666664 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04571666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.006766666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.009733333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03266666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0321 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01805 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011716666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.025516666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.030500000000000003 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04136666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03158333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01838333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.011000000000000001 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02025 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04673333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02025 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03383333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.008033333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.018333333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.005433333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03175 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02715 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03305 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.009466666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.037616666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.024216666666666668 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03801666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011033333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011283333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0361 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0216 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04211666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.022016666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04103333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03451666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007483333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04973333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03598333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.022000000000000002 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.034666666666666665 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03535 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.026000000000000002 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.040016666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04803333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0070999999999999995 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.037283333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04883333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01245 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0422 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.042133333333333335 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.022083333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04491666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04416666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.030000000000000002 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04478333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03211666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.020666666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010633333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04986666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.037333333333333336 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.045849999999999995 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.035883333333333337 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.00525 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.031933333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0439 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01545 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.015166666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.025916666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.040516666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.017733333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.024916666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.016133333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012683333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.025216666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.008566666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.025933333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.00725 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.009983333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.045616666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0291 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.027399999999999997 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.007750000000000001 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.006466666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03648333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.030633333333333335 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0078000000000000005 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.018433333333333336 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.025833333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.029500000000000002 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02706666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03275 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0455 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.041966666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.020916666666666663 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.038066666666666665 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.014933333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04323333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010533333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.014233333333333332 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.01745 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.018116666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.014666666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.036283333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.020933333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.043416666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012516666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.030100000000000002 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.029516666666666667 | 0.5 | 0.6666666666666666 | |
| LVL-Gradiant_Slow_med_fast | 0.00785 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.049216666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04673333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.016933333333333335 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.027483333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03846666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02861666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.021616666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.011916666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.02733333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0067 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.009883333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02225 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0124 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01255 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01991666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0256 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0222 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.018000000000000002 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04731666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0457 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.041933333333333336 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012416666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.024550000000000002 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.025516666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03403333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.017900000000000003 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.029849999999999998 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04045 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.033133333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.028416666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.008783333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04725 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03381666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04356666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0060999999999999995 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.007883333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04566666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03173333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.005266666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0262 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.026533333333333336 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03266666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.045083333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0064 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.048233333333333336 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0435 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03858333333333333 | 0.5 | 0.6666666666666666 | |
| LVL-Gradiant_Slow_med_fast | 0.031016666666666668 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0138 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.028483333333333336 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.02656666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04735 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.015783333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01225 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012666666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04935 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03333333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.034666666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.018433333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.005666666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04816666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012433333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04165 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.022966666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005916666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02845 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005683333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.047599999999999996 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0167 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02775 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04296666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.049666666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.043000000000000003 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.006683333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.026483333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.024966666666666668 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.045616666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0112 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.042083333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.039516666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.016116666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0407 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.028966666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03775 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.006116666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.040766666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024650000000000002 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04948333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04721666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.024 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03573333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04578333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009583333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.01565 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0413 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03443333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04873333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03133333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009166666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.013583333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.008383333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03696666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04858333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.023966666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.029933333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03956666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.018266666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.011616666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03038333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012433333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03738333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01545 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.048466666666666665 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04421666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02206666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010583333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.008833333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03913333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.026083333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.021533333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.030883333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.037083333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.01975 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.026316666666666665 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02911666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.026733333333333335 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.011516666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.026483333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.016816666666666664 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.034216666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.017016666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03903333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.023966666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.011483333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.044033333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.027483333333333335 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02295 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.015166666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03188333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.030933333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.014633333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.02425 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.018433333333333336 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.029166666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.014216666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.007816666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.020050000000000002 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0296 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03556666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0298 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0157 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.009766666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04788333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0283 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.028133333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.024733333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04721666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.035383333333333336 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.019866666666666664 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012983333333333335 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.040266666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0091 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.026333333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04068333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04808333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006966666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.014583333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.024399999999999998 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.005216666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0253 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.019116666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.025516666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0149 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.031083333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010183333333333332 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03925 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.039183333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01856666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01745 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04951666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02528333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.009566666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.005333333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04128333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.040850000000000004 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.040633333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.033749999999999995 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.009283333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03791666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01695 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01005 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.00575 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.017066666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.019883333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.031033333333333336 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.049 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.009366666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.027766666666666665 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.022866666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.010766666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.030166666666666668 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010216666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02765 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04351666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0084 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.006116666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04783333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.046 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03845 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.045849999999999995 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04081666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.035083333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02735 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04031666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0467 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.030116666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.019033333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04618333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0369 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.026583333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.024583333333333336 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.02646666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.046849999999999996 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02735 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03863333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.020083333333333335 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015566666666666668 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.015283333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012199999999999999 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03231666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.017516666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.033133333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007983333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.020033333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04393333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0385 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02723333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04098333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04773333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.034416666666666665 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.032 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.020866666666666665 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02323333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.016183333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04435 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.015266666666666668 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.045766666666666664 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.013533333333333335 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.01935 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03261666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02578333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.026116666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.018433333333333336 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011983333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04455 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.006516666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0477 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0262 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0436 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0258 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02861666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0052 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.017249999999999998 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.041633333333333335 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04711666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04935 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02206666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03965 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.022016666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0329 | 0.6 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.047599999999999996 | 0.9 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.03265 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.035383333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.028633333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.030266666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02165 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04006666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.049666666666666665 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.030116666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.028666666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.031983333333333336 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03368333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04441666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.021633333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04065 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.022483333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02825 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0132 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.047066666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.019299999999999998 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.028716666666666668 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.013016666666666668 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011033333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.018349999999999998 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0356 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.030216666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03415 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0069 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.029449999999999997 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.020983333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.022516666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.006616666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.011483333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.043050000000000005 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.019016666666666668 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03401666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012083333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.008683333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01175 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012466666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04251666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.017 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.025349999999999998 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04945 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01135 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.040216666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00875 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.034583333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.024966666666666668 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.017266666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.035383333333333336 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0324 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.008366666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010616666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04578333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.020666666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.026416666666666665 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0385 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01755 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.030783333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.018416666666666668 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0218 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02188333333333333 | 0.2 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.044000000000000004 | 0.4 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.02265 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.044000000000000004 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.015466666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03423333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03356666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.00805 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.016266666666666665 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0129 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.015683333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0129 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.045233333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04566666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02033333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0434 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.014216666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009316666666666668 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04978333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.006633333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.034216666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04346666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0424 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03626666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.014916666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0263 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01668333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.014916666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.007966666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04731666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.011966666666666665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.045733333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02415 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04513333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.022916666666666665 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012266666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03158333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01595 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.01765 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04291666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03861666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03825 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.048516666666666666 | 0.7 | 0.9 | |
| LVL-Gradiant_Slow_med_fast | 0.027983333333333336 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.029733333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0486 | 0.2 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.04525 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010216666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.02783333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.04671666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.015133333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04506666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.024283333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.015500000000000002 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0407 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.013433333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015216666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.048183333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.013683333333333332 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010166666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.015566666666666668 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04995 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.048183333333333335 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.030033333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01265 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01715 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02315 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03133333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01941666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04663333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.005016666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.008316666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.025500000000000002 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.029083333333333336 | 0.9 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.013316666666666668 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04645 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.019433333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.031466666666666664 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.047516666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03701666666666667 | 0.4 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.018266666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03333333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.033416666666666664 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.020383333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.040549999999999996 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.00705 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03706666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.031483333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04968333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.028916666666666667 | 0.0 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.00705 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.028566666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04393333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04661666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.021916666666666664 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.00815 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013183333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01806666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0331 | 0.7 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.0439 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.048266666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04206666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.024650000000000002 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013766666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.006616666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.007033333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.016816666666666664 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0329 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.029 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.046683333333333334 | 0.9 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.036449999999999996 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013066666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.012566666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01815 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.027183333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.02901666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.013383333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.025566666666666668 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.027283333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.030933333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.044849999999999994 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.018433333333333336 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02355 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.025866666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.033416666666666664 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.024366666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009949999999999999 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03833333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03253333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03133333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04153333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.042499999999999996 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03453333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.015550000000000001 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0171 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01718333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03966666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.041433333333333336 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.039150000000000004 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.027633333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.034699999999999995 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.014783333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04025 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02245 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03478333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.030183333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.01005 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0072 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03191666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.025816666666666665 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03188333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.032633333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.01095 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.012366666666666666 | 0.4 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.006316666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.017666666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03005 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011366666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0077 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.015799999999999998 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01045 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.030500000000000003 | 0.4 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.019116666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.029433333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.036283333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.029783333333333332 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.047066666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.018866666666666664 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04961666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.019166666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04546666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008916666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.011033333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02105 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04291666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02238333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.00985 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.017166666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.017433333333333335 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04958333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.031316666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.040549999999999996 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.029050000000000003 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0182 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.02665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03308333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0062833333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.016416666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.030783333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.021716666666666665 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.016749999999999998 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.035883333333333337 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04153333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0371 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03055 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006216666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0249 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.00975 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.024916666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03691666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04363333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.032483333333333336 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.035616666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.020716666666666668 | 0.9 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.031216666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04568333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0319 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04201666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.014366666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.028233333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.034716666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03781666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.025583333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0299 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008116666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.021983333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.017983333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.009433333333333332 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.025133333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04781666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008683333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.01951666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.023366666666666664 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.008133333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03265 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.024066666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.016816666666666664 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04181666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.013666666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.006466666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03463333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0474 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.025116666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.039 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04708333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.009983333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02138333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.007233333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0429 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03778333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.025933333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.034166666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03543333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.040799999999999996 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04178333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.032216666666666664 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.010633333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.017433333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04973333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.01633333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.030183333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.016849999999999997 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01145 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.019266666666666665 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.04153333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0359 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0326 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.023950000000000003 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04301666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.012783333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.049 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0375 | 0.0 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.01825 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.023816666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01575 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.020966666666666668 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.017583333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01788333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.012633333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.024783333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0276 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.026016666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.018016666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03758333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.017349999999999997 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.018766666666666664 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0242 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.013833333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04183333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.021183333333333332 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.020733333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015933333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02035 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.031100000000000003 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03651666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.031716666666666664 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0088 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03361666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0227 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03203333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0154 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.015966666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013166666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.02706666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.045000000000000005 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.013083333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005916666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04218333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03158333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.017683333333333332 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.042166666666666665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009733333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.02323333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.013466666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.049133333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0259 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.029083333333333336 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03846666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01796666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.00745 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04896666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015666666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0302 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04006666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010983333333333335 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.008283333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.007266666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.024716666666666668 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.007683333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0076 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04105 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03846666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.024916666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.022433333333333336 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0267 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03866666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.018233333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04781666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03905 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04858333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04386666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04786666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04878333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03493333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.00505 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.014216666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.017316666666666664 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.014383333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.02333333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0461 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0060999999999999995 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.025533333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02415 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0061333333333333335 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.025116666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.013416666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.00545 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03426666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03281666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.012583333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.038599999999999995 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.02105 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.042466666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.041416666666666664 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03455 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.028233333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04056666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.045483333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.027666666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.048549999999999996 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0275 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010783333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03261666666666667 | 0.0 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.04708333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.023766666666666665 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.026166666666666668 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.02245 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.045083333333333336 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0111 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.007816666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.023216666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.007183333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01865 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.033666666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009699999999999999 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0297 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.028416666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.00725 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.025216666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.04701666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.026766666666666668 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0224 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03308333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.017533333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.03716666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.02948333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03571666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.009483333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03278333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04156666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.019533333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.020083333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.017166666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.039983333333333336 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04273333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.023033333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03995 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.028 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0139 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009366666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.039233333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010833333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.016983333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.029916666666666664 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.01225 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03133333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02015 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.011116666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015133333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.04925 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.022633333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.026783333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0246 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013066666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0128 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.018516666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.008616666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074333333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.048016666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.026949999999999998 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.033549999999999996 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.019450000000000002 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0060999999999999995 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.027816666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03305 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01465 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04735 | 0.3 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.021016666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.020066666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04515 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.03986666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.035166666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04321666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04661666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.03706666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.016416666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03281666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.040749999999999995 | 0.6 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.020083333333333335 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.05 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0249 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.03208333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.046849999999999996 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.031316666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.03641666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.02735 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.04618333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.047150000000000004 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0329 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.034800000000000005 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.029433333333333332 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.016666666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03005 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03133333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0243 | 0.0 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.03125 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.028966666666666665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.023033333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02733333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.005933333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03768333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.018766666666666664 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.016016666666666665 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.016866666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.021616666666666666 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.038983333333333335 | 0.7 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.03568333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0243 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.027766666666666665 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.03191666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.047933333333333335 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.045566666666666665 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.04103333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.020233333333333332 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0366 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.04326666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.028733333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.02815 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.039433333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0308 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.04101666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.02315 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.028666666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.032350000000000004 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.015416666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.018616666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.03836666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.032216666666666664 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.03801666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0364 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.02375 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.04346666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.011316666666666668 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.02128333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.015333333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.046516666666666664 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.027083333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.03853333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.02285 | 0.3 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.03306666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.028933333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.013016666666666668 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009283333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.018233333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.04955 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.03055 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.044566666666666664 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00515 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.02061666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0095 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0121 | 0.4 | 0.7777777777777778 | |
| LVL-Gradiant_Slow_med_fast | 0.00865 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007516666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.010833333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.009116666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009233333333333335 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012383333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.005983333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.010966666666666668 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0082 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012933333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013283333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.008783333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.010516666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009399999999999999 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.012266666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0104 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008816666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.009200000000000002 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011733333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0058 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010933333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.007066666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.011183333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.007416666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.012483333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010766666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007033333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0057666666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012883333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012383333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.005266666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011116666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0058 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012716666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.005216666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.007816666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.005683333333333334 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011949999999999999 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008983333333333334 | 0.7 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.0062 | 0.6 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.007333333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010766666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.008700000000000001 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.010483333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010750000000000001 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007666666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012416666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.00935 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009416666666666665 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.010466666666666668 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.005233333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012133333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010333333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012566666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009133333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.010966666666666668 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009949999999999999 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006266666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010416666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009083333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0067 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01145 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.011283333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.007333333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009300000000000001 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012283333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.00515 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.010533333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005316666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009333333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.011683333333333332 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01245 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009300000000000001 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.006750000000000001 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.006783333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0108 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.011883333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0068 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01295 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.009916666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.010266666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010616666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008366666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010216666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01255 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.011783333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.008516666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.00905 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.012016666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0072 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010883333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.010833333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.007166666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013083333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012833333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.008216666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010199999999999999 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.0061333333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.01225 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.006633333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010566666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.011883333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0057666666666666665 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.006666666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0072833333333333335 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.00635 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.00955 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.013166666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008583333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0076166666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00575 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01305 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.007766666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01225 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.011183333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0076500000000000005 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010333333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.005416666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.013016666666666668 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.011966666666666665 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.007916666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.007066666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.010316666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0084 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.005916666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.005849999999999999 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0070999999999999995 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.013250000000000001 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.011433333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0131 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0069 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0051333333333333335 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.011483333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.0064 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.011616666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0128 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.009916666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006566666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.00555 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0076500000000000005 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008616666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.006933333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.005083333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.009166666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.009166666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.00915 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.007233333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.005666666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013066666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012416666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.007366666666666666 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.007683333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.009966666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.013166666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011616666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006033333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.009016666666666668 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.01255 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.00785 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010883333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.007933333333333332 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.007883333333333332 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.005433333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008183333333333332 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.005083333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008166666666666666 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012883333333333333 | 0.6 | 0.8888888888888888 | |
| LVL-Gradiant_Slow_med_fast | 0.00625 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.005333333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.010783333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.008316666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012199999999999999 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012866666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0072 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010733333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012666666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010316666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.00545 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0127 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.00915 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.00605 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00605 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012483333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.01025 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.01315 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.011066666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009633333333333332 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.010583333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0125 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005333333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.013283333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.010833333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005333333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.01 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011033333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.00695 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009583333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010066666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.006633333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008383333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.008566666666666667 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074333333333333335 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010516666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008383333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009216666666666668 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.008766666666666667 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0060999999999999995 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0086 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.0085 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008783333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011516666666666666 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.005266666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0069166666666666664 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.007233333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010483333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.00815 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.010233333333333334 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012283333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.012816666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.006083333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012333333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.009316666666666668 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0059 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012516666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.00515 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010266666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01315 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.010533333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0064 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0123 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0074333333333333335 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011316666666666668 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.005116666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009333333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.012 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.006583333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.006383333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0086 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.008833333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.006933333333333333 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.012366666666666666 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.011433333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008166666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.005883333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008283333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0054666666666666665 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00555 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.01235 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0076166666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0057 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00825 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009366666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.011066666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00635 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.012833333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.012883333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.009966666666666667 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.008066666666666666 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.00505 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.009399999999999999 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.012116666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013250000000000001 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0057666666666666665 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.0111 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.010483333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.008133333333333333 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0072833333333333335 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.012216666666666666 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.007266666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.01285 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009000000000000001 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.011183333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0063 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009866666666666666 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.0118 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.00505 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0066500000000000005 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0123 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.0077 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0063 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.00725 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.010766666666666667 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.011316666666666668 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013016666666666668 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.008866666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.005666666666666667 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.0066 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01295 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012466666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.013133333333333334 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012883333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011233333333333335 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012816666666666667 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.005683333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.01315 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008733333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.006683333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.01085 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.008933333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.00575 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.006033333333333333 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012816666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.0064 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010883333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.013166666666666667 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.011266666666666668 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00855 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.007633333333333334 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.007166666666666667 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.005033333333333333 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009983333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.013283333333333334 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.007683333333333334 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.012033333333333333 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011250000000000001 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.009216666666666668 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.0050999999999999995 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.00705 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.008916666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.012916666666666667 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.009183333333333333 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.013216666666666666 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.011250000000000001 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.007783333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.009699999999999999 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012583333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0058 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.006583333333333333 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.010483333333333334 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.0091 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.007183333333333333 | 0.3 | ||
| LVL-Gradiant_Slow_med_fast | 0.008033333333333333 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.00655 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.012166666666666666 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.00755 | 0.4 | 1.0 | |
| LVL-Gradiant_Slow_med_fast | 0.01145 | 0.8 | 1.0 | |
| LVL-Gradiant_Slow_med_fast | 0.008716666666666668 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.011516666666666666 | 0.4 | 1.0 | |
| LVL-Gradiant_Slow_med_fast | 0.009066666666666667 | 0.3 | 1.0 | |
| LVL-Gradiant_Slow_med_fast | 0.007866666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.007316666666666667 | 0.1 | 1.0 | |
| LVL-Gradiant_Slow_med_fast | 0.01305 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.010483333333333334 | 0.0 | 1.0 | |
| LVL-Gradiant_Slow_med_fast | 0.01305 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.009283333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008833333333333334 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.012366666666666666 | 0.2 | ||
| LVL-Gradiant_Slow_med_fast | 0.008450000000000001 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.008233333333333334 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.012916666666666667 | 0.9 | ||
| LVL-Gradiant_Slow_med_fast | 0.006833333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.01215 | 0.7 | ||
| LVL-Gradiant_Slow_med_fast | 0.01105 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.005166666666666667 | 0.6 | ||
| LVL-Gradiant_Slow_med_fast | 0.00865 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011250000000000001 | 1.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.011183333333333333 | 0.4 | ||
| LVL-Gradiant_Slow_med_fast | 0.010750000000000001 | 0.1 | ||
| LVL-Gradiant_Slow_med_fast | 0.010533333333333334 | 0.5 | ||
| LVL-Gradiant_Slow_med_fast | 0.012883333333333333 | 0.8 | ||
| LVL-Gradiant_Slow_med_fast | 0.012733333333333334 | 0.0 | ||
| LVL-Gradiant_Slow_med_fast | 0.006383333333333334 | 0.5 | 0.9999999 | |
| LVL-fast | 0.00695 | 0.2 | ||
| LVL-fast | 0.0086 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 0.2 | ||
| LVL-fast | 0.005983333333333333 | 0.4 | ||
| LVL-fast | 0.006733333333333333 | 1.0 | ||
| LVL-fast | 0.0123 | 0.0 | ||
| LVL-fast | 0.011250000000000001 | 0.6 | ||
| LVL-fast | 0.009183333333333333 | 0.0 | ||
| LVL-fast | 0.005783333333333333 | 0.3 | ||
| LVL-fast | 0.012466666666666666 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 1.0 | ||
| LVL-fast | 0.012466666666666666 | 0.9 | ||
| LVL-fast | 0.010666666666666666 | 0.4 | ||
| LVL-fast | 0.007483333333333333 | 0.2 | ||
| LVL-fast | 0.010333333333333333 | 0.5 | ||
| LVL-fast | 0.007083333333333333 | 0.6 | ||
| LVL-fast | 0.01265 | 0.3 | ||
| LVL-fast | 0.01145 | 0.1 | ||
| LVL-fast | 0.009283333333333334 | 0.0 | ||
| LVL-fast | 0.00815 | 0.6 | ||
| LVL-fast | 0.006483333333333333 | 0.9 | ||
| LVL-fast | 0.009699999999999999 | 0.4 | 0.0 | |
| LVL-fast | 0.011983333333333334 | 0.6 | ||
| LVL-fast | 0.011933333333333332 | 0.4 | ||
| LVL-fast | 0.009250000000000001 | 0.4 | ||
| LVL-fast | 0.011583333333333333 | 0.8 | ||
| LVL-fast | 0.007116666666666666 | 0.0 | ||
| LVL-fast | 0.0070999999999999995 | 0.2 | ||
| LVL-fast | 0.005833333333333333 | 0.3 | ||
| LVL-fast | 0.012383333333333333 | 1.0 | ||
| LVL-fast | 0.012383333333333333 | 0.6 | ||
| LVL-fast | 0.00605 | 0.6 | ||
| LVL-fast | 0.012016666666666667 | 0.8 | ||
| LVL-fast | 0.013316666666666668 | 0.6 | ||
| LVL-fast | 0.006016666666666667 | 0.5 | ||
| LVL-fast | 0.009816666666666666 | 0.8 | ||
| LVL-fast | 0.0076 | 1.0 | ||
| LVL-fast | 0.005433333333333333 | 0.4 | ||
| LVL-fast | 0.009300000000000001 | 1.0 | ||
| LVL-fast | 0.008316666666666667 | 0.2 | ||
| LVL-fast | 0.006383333333333334 | 0.4 | ||
| LVL-fast | 0.009566666666666666 | 0.9 | ||
| LVL-fast | 0.005849999999999999 | 0.7 | ||
| LVL-fast | 0.00545 | 0.5 | ||
| LVL-fast | 0.008 | 0.1 | ||
| LVL-fast | 0.007366666666666666 | 0.2 | 0.1111111111111111 | |
| LVL-fast | 0.01025 | 0.9 | ||
| LVL-fast | 0.008366666666666666 | 0.5 | ||
| LVL-fast | 0.008616666666666667 | 0.0 | ||
| LVL-fast | 0.013283333333333334 | 0.0 | ||
| LVL-fast | 0.009783333333333333 | 0.0 | ||
| LVL-fast | 0.0076500000000000005 | 0.7 | ||
| LVL-fast | 0.0115 | 0.0 | ||
| LVL-fast | 0.0082 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.5 | ||
| LVL-fast | 0.006366666666666667 | 0.1 | ||
| LVL-fast | 0.009449999999999998 | 0.7 | ||
| LVL-fast | 0.010616666666666667 | 0.5 | ||
| LVL-fast | 0.012083333333333333 | 0.8 | ||
| LVL-fast | 0.008766666666666667 | 0.1 | ||
| LVL-fast | 0.01285 | 0.6 | ||
| LVL-fast | 0.0073 | 0.8 | ||
| LVL-fast | 0.009666666666666665 | 0.7 | ||
| LVL-fast | 0.00885 | 1.0 | ||
| LVL-fast | 0.009366666666666667 | 0.7 | ||
| LVL-fast | 0.007983333333333334 | 0.3 | ||
| LVL-fast | 0.006 | 0.9 | ||
| LVL-fast | 0.007733333333333333 | 1.0 | ||
| LVL-fast | 0.005849999999999999 | 0.9 | ||
| LVL-fast | 0.01155 | 0.8 | ||
| LVL-fast | 0.007666666666666667 | 0.4 | ||
| LVL-fast | 0.005516666666666667 | 1.0 | ||
| LVL-fast | 0.010866666666666667 | 0.4 | ||
| LVL-fast | 0.010750000000000001 | 0.7 | ||
| LVL-fast | 0.007516666666666667 | 0.3 | ||
| LVL-fast | 0.005833333333333333 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 0.1 | ||
| LVL-fast | 0.007266666666666667 | 0.7 | ||
| LVL-fast | 0.0066500000000000005 | 0.1 | ||
| LVL-fast | 0.010199999999999999 | 0.7 | ||
| LVL-fast | 0.005683333333333334 | 0.3 | ||
| LVL-fast | 0.011000000000000001 | 1.0 | ||
| LVL-fast | 0.009933333333333332 | 0.9 | ||
| LVL-fast | 0.007033333333333333 | 0.4 | ||
| LVL-fast | 0.008316666666666667 | 0.6 | ||
| LVL-fast | 0.006116666666666667 | 0.8 | ||
| LVL-fast | 0.012116666666666666 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 0.8 | ||
| LVL-fast | 0.009683333333333332 | 0.8 | ||
| LVL-fast | 0.005533333333333334 | 0.4 | ||
| LVL-fast | 0.0072 | 0.8 | ||
| LVL-fast | 0.005716666666666667 | 0.1 | ||
| LVL-fast | 0.007233333333333333 | 0.0 | ||
| LVL-fast | 0.013066666666666667 | 1.0 | ||
| LVL-fast | 0.009316666666666668 | 0.8 | ||
| LVL-fast | 0.01285 | 0.4 | 0.2222222222222222 | |
| LVL-fast | 0.01245 | 0.8 | ||
| LVL-fast | 0.012933333333333333 | 0.5 | ||
| LVL-fast | 0.0051333333333333335 | 0.1 | ||
| LVL-fast | 0.0072 | 1.0 | ||
| LVL-fast | 0.00535 | 0.9 | ||
| LVL-fast | 0.008866666666666667 | 0.6 | ||
| LVL-fast | 0.008516666666666667 | 1.0 | ||
| LVL-fast | 0.0055000000000000005 | 0.6 | ||
| LVL-fast | 0.01025 | 1.0 | ||
| LVL-fast | 0.0054666666666666665 | 0.1 | ||
| LVL-fast | 0.013316666666666668 | 0.1 | ||
| LVL-fast | 0.00935 | 0.9 | ||
| LVL-fast | 0.0070999999999999995 | 0.6 | ||
| LVL-fast | 0.0074333333333333335 | 0.5 | ||
| LVL-fast | 0.007633333333333334 | 0.1 | ||
| LVL-fast | 0.011416666666666667 | 0.7 | ||
| LVL-fast | 0.012683333333333333 | 0.9 | ||
| LVL-fast | 0.013133333333333334 | 0.9 | ||
| LVL-fast | 0.012183333333333332 | 0.8 | ||
| LVL-fast | 0.013033333333333334 | 0.2 | ||
| LVL-fast | 0.0125 | 0.8 | ||
| LVL-fast | 0.00735 | 0.3 | ||
| LVL-fast | 0.009250000000000001 | 0.7 | ||
| LVL-fast | 0.006783333333333333 | 0.4 | ||
| LVL-fast | 0.006383333333333334 | 0.6 | ||
| LVL-fast | 0.009733333333333333 | 0.5 | ||
| LVL-fast | 0.0124 | 0.4 | ||
| LVL-fast | 0.006666666666666667 | 0.4 | ||
| LVL-fast | 0.0105 | 0.6 | ||
| LVL-fast | 0.012116666666666666 | 0.4 | ||
| LVL-fast | 0.011366666666666667 | 0.9 | ||
| LVL-fast | 0.010633333333333333 | 0.2 | ||
| LVL-fast | 0.0057 | 0.0 | ||
| LVL-fast | 0.010016666666666667 | 1.0 | ||
| LVL-fast | 0.007366666666666666 | 0.6 | ||
| LVL-fast | 0.005716666666666667 | 0.2 | ||
| LVL-fast | 0.010266666666666667 | 1.0 | ||
| LVL-fast | 0.011566666666666666 | 0.1 | ||
| LVL-fast | 0.006 | 0.7 | ||
| LVL-fast | 0.005266666666666667 | 0.8 | ||
| LVL-fast | 0.0081 | 0.8 | ||
| LVL-fast | 0.007833333333333333 | 0.7 | ||
| LVL-fast | 0.0072833333333333335 | 0.0 | ||
| LVL-fast | 0.006183333333333333 | 0.5 | ||
| LVL-fast | 0.011866666666666666 | 0.0 | ||
| LVL-fast | 0.011583333333333333 | 0.0 | ||
| LVL-fast | 0.00615 | 0.5 | ||
| LVL-fast | 0.011699999999999999 | 0.6 | ||
| LVL-fast | 0.008966666666666668 | 0.7 | ||
| LVL-fast | 0.012333333333333333 | 0.0 | ||
| LVL-fast | 0.013016666666666668 | 0.6 | ||
| LVL-fast | 0.010883333333333333 | 0.9 | ||
| LVL-fast | 0.008966666666666668 | 0.4 | ||
| LVL-fast | 0.009533333333333333 | 0.2 | ||
| LVL-fast | 0.008016666666666667 | 0.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.013033333333333334 | 0.6 | ||
| LVL-fast | 0.0109 | 0.5 | ||
| LVL-fast | 0.009033333333333334 | 0.6 | ||
| LVL-fast | 0.008683333333333333 | 0.8 | ||
| LVL-fast | 0.013266666666666668 | 0.2 | ||
| LVL-fast | 0.00815 | 0.0 | ||
| LVL-fast | 0.005966666666666666 | 0.0 | ||
| LVL-fast | 0.006083333333333333 | 0.3 | ||
| LVL-fast | 0.012666666666666666 | 1.0 | ||
| LVL-fast | 0.0127 | 0.7 | ||
| LVL-fast | 0.011983333333333334 | 0.3 | ||
| LVL-fast | 0.00715 | 0.1 | ||
| LVL-fast | 0.005933333333333333 | 0.5 | ||
| LVL-fast | 0.010033333333333333 | 0.9 | 0.3333333333333333 | |
| LVL-fast | 0.006083333333333333 | 0.4 | ||
| LVL-fast | 0.012933333333333333 | 0.5 | ||
| LVL-fast | 0.006183333333333333 | 0.1 | ||
| LVL-fast | 0.006733333333333333 | 1.0 | ||
| LVL-fast | 0.01185 | 1.0 | ||
| LVL-fast | 0.007666666666666667 | 0.0 | ||
| LVL-fast | 0.012766666666666667 | 0.6 | ||
| LVL-fast | 0.00705 | 1.0 | ||
| LVL-fast | 0.0059499999999999996 | 0.8 | ||
| LVL-fast | 0.009516666666666666 | 0.9 | ||
| LVL-fast | 0.007216666666666666 | 0.5 | ||
| LVL-fast | 0.009516666666666666 | 0.4 | ||
| LVL-fast | 0.008383333333333333 | 0.6 | ||
| LVL-fast | 0.007883333333333332 | 1.0 | ||
| LVL-fast | 0.009366666666666667 | 0.1 | ||
| LVL-fast | 0.005233333333333334 | 0.8 | ||
| LVL-fast | 0.005966666666666666 | 0.1 | ||
| LVL-fast | 0.010933333333333333 | 0.2 | ||
| LVL-fast | 0.006366666666666667 | 0.8 | ||
| LVL-fast | 0.00825 | 1.0 | ||
| LVL-fast | 0.012 | 0.4 | ||
| LVL-fast | 0.00735 | 0.7 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.007316666666666667 | 0.5 | ||
| LVL-fast | 0.010516666666666667 | 0.0 | ||
| LVL-fast | 0.0076 | 0.0 | ||
| LVL-fast | 0.013300000000000001 | 0.5 | ||
| LVL-fast | 0.00705 | 0.4 | ||
| LVL-fast | 0.005483333333333334 | 0.0 | ||
| LVL-fast | 0.009000000000000001 | 0.3 | ||
| LVL-fast | 0.007866666666666666 | 0.7 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.01035 | 0.6 | ||
| LVL-fast | 0.01235 | 0.6 | ||
| LVL-fast | 0.006716666666666667 | 0.6 | ||
| LVL-fast | 0.0056 | 0.0 | ||
| LVL-fast | 0.009233333333333335 | 0.3 | ||
| LVL-fast | 0.010916666666666667 | 0.6 | ||
| LVL-fast | 0.006116666666666667 | 0.5 | ||
| LVL-fast | 0.006233333333333333 | 0.0 | ||
| LVL-fast | 0.011333333333333334 | 0.5 | ||
| LVL-fast | 0.01155 | 0.6 | ||
| LVL-fast | 0.013016666666666668 | 0.4 | ||
| LVL-fast | 0.01315 | 0.3 | ||
| LVL-fast | 0.009516666666666666 | 0.9 | ||
| LVL-fast | 0.012333333333333333 | 0.1 | ||
| LVL-fast | 0.0083 | 0.4 | ||
| LVL-fast | 0.00905 | 0.8 | ||
| LVL-fast | 0.012516666666666667 | 0.9 | ||
| LVL-fast | 0.0078000000000000005 | 0.3 | ||
| LVL-fast | 0.008183333333333332 | 0.6 | ||
| LVL-fast | 0.01095 | 0.2 | ||
| LVL-fast | 0.009583333333333333 | 0.6 | ||
| LVL-fast | 0.013300000000000001 | 0.4 | ||
| LVL-fast | 0.011583333333333333 | 0.5 | ||
| LVL-fast | 0.007633333333333334 | 0.5 | ||
| LVL-fast | 0.012216666666666666 | 0.5 | ||
| LVL-fast | 0.006033333333333333 | 0.4 | ||
| LVL-fast | 0.01245 | 0.5 | ||
| LVL-fast | 0.006666666666666667 | 0.8 | ||
| LVL-fast | 0.01315 | 0.1 | ||
| LVL-fast | 0.0127 | 0.9 | ||
| LVL-fast | 0.011283333333333334 | 1.0 | ||
| LVL-fast | 0.009633333333333332 | 0.2 | ||
| LVL-fast | 0.010199999999999999 | 0.1 | ||
| LVL-fast | 0.012716666666666666 | 0.9 | ||
| LVL-fast | 0.01225 | 0.2 | ||
| LVL-fast | 0.0067 | 0.4 | ||
| LVL-fast | 0.007716666666666667 | 0.7 | ||
| LVL-fast | 0.0066 | 0.9 | ||
| LVL-fast | 0.006666666666666667 | 0.7 | ||
| LVL-fast | 0.008450000000000001 | 0.8 | ||
| LVL-fast | 0.009699999999999999 | 0.3 | ||
| LVL-fast | 0.0106 | 0.9 | ||
| LVL-fast | 0.012866666666666667 | 0.4 | ||
| LVL-fast | 0.009933333333333332 | 0.5 | ||
| LVL-fast | 0.008683333333333333 | 0.8 | ||
| LVL-fast | 0.00515 | 0.6 | ||
| LVL-fast | 0.006866666666666666 | 0.6 | ||
| LVL-fast | 0.0089 | 0.7 | ||
| LVL-fast | 0.00625 | 0.0 | ||
| LVL-fast | 0.005483333333333334 | 0.4 | ||
| LVL-fast | 0.00615 | 0.9 | ||
| LVL-fast | 0.006316666666666667 | 0.2 | ||
| LVL-fast | 0.012666666666666666 | 0.0 | ||
| LVL-fast | 0.005116666666666667 | 0.8 | ||
| LVL-fast | 0.00865 | 0.1 | ||
| LVL-fast | 0.0062833333333333335 | 0.1 | ||
| LVL-fast | 0.0054 | 0.5 | ||
| LVL-fast | 0.006849999999999999 | 0.9 | ||
| LVL-fast | 0.005016666666666667 | 1.0 | ||
| LVL-fast | 0.01265 | 0.6 | ||
| LVL-fast | 0.006183333333333333 | 0.8 | ||
| LVL-fast | 0.006849999999999999 | 0.9 | ||
| LVL-fast | 0.0104 | 0.6 | ||
| LVL-fast | 0.008116666666666666 | 0.5 | ||
| LVL-fast | 0.007666666666666667 | 0.1 | ||
| LVL-fast | 0.007833333333333333 | 0.2 | ||
| LVL-fast | 0.012716666666666666 | 0.2 | ||
| LVL-fast | 0.008083333333333333 | 0.4 | ||
| LVL-fast | 0.005533333333333334 | 0.7 | ||
| LVL-fast | 0.005883333333333333 | 0.3 | ||
| LVL-fast | 0.009716666666666667 | 1.0 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.010083333333333333 | 0.9 | ||
| LVL-fast | 0.012466666666666666 | 0.1 | ||
| LVL-fast | 0.006933333333333333 | 0.0 | ||
| LVL-fast | 0.008766666666666667 | 0.6 | ||
| LVL-fast | 0.007216666666666666 | 1.0 | ||
| LVL-fast | 0.008733333333333334 | 1.0 | ||
| LVL-fast | 0.012316666666666667 | 0.1 | ||
| LVL-fast | 0.00955 | 0.8 | ||
| LVL-fast | 0.011649999999999999 | 0.7 | ||
| LVL-fast | 0.007466666666666667 | 0.2 | ||
| LVL-fast | 0.0057666666666666665 | 0.3 | ||
| LVL-fast | 0.009316666666666668 | 0.2 | ||
| LVL-fast | 0.010283333333333334 | 0.7 | ||
| LVL-fast | 0.0111 | 0.4 | ||
| LVL-fast | 0.0121 | 0.0 | ||
| LVL-fast | 0.011783333333333333 | 0.6 | ||
| LVL-fast | 0.011566666666666666 | 0.8 | ||
| LVL-fast | 0.010016666666666667 | 0.6 | ||
| LVL-fast | 0.00735 | 0.9 | ||
| LVL-fast | 0.010783333333333334 | 0.3 | ||
| LVL-fast | 0.009316666666666668 | 1.0 | ||
| LVL-fast | 0.005966666666666666 | 0.4 | ||
| LVL-fast | 0.013083333333333334 | 1.0 | ||
| LVL-fast | 0.005933333333333333 | 0.9 | ||
| LVL-fast | 0.012483333333333334 | 0.8 | ||
| LVL-fast | 0.00525 | 0.8 | ||
| LVL-fast | 0.01105 | 0.0 | ||
| LVL-fast | 0.008950000000000001 | 0.0 | ||
| LVL-fast | 0.0107 | 0.8 | ||
| LVL-fast | 0.009966666666666667 | 0.0 | ||
| LVL-fast | 0.012199999999999999 | 0.8 | ||
| LVL-fast | 0.010616666666666667 | 0.6 | ||
| LVL-fast | 0.00855 | 1.0 | ||
| LVL-fast | 0.007916666666666666 | 0.5 | ||
| LVL-fast | 0.00915 | 0.4 | ||
| LVL-fast | 0.012083333333333333 | 0.4 | ||
| LVL-fast | 0.007483333333333333 | 0.1 | ||
| LVL-fast | 0.0051333333333333335 | 0.6 | ||
| LVL-fast | 0.009200000000000002 | 0.5 | ||
| LVL-fast | 0.01055 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 1.0 | ||
| LVL-fast | 0.0052 | 0.0 | ||
| LVL-fast | 0.009399999999999999 | 0.5 | ||
| LVL-fast | 0.00735 | 0.5 | ||
| LVL-fast | 0.008700000000000001 | 1.0 | ||
| LVL-fast | 0.012733333333333334 | 0.0 | ||
| LVL-fast | 0.010733333333333334 | 0.9 | ||
| LVL-fast | 0.010083333333333333 | 0.1 | ||
| LVL-fast | 0.009166666666666667 | 0.7 | ||
| LVL-fast | 0.010533333333333334 | 1.0 | ||
| LVL-fast | 0.0062 | 0.2 | ||
| LVL-fast | 0.01205 | 0.7 | ||
| LVL-fast | 0.011483333333333333 | 0.9 | ||
| LVL-fast | 0.0061333333333333335 | 0.6 | ||
| LVL-fast | 0.009466666666666667 | 0.6 | ||
| LVL-fast | 0.0085 | 0.1 | ||
| LVL-fast | 0.008833333333333334 | 0.3 | ||
| LVL-fast | 0.01105 | 0.0 | ||
| LVL-fast | 0.008233333333333334 | 0.5 | ||
| LVL-fast | 0.009083333333333334 | 0.7 | ||
| LVL-fast | 0.0071333333333333335 | 0.4 | ||
| LVL-fast | 0.011316666666666668 | 0.9 | ||
| LVL-fast | 0.0058 | 0.4 | ||
| LVL-fast | 0.011683333333333332 | 1.0 | ||
| LVL-fast | 0.005333333333333333 | 0.3 | ||
| LVL-fast | 0.006583333333333333 | 0.4 | ||
| LVL-fast | 0.006683333333333334 | 0.4 | ||
| LVL-fast | 0.009383333333333332 | 0.8 | ||
| LVL-fast | 0.0070999999999999995 | 0.6 | ||
| LVL-fast | 0.012966666666666666 | 0.9 | ||
| LVL-fast | 0.0121 | 0.8 | ||
| LVL-fast | 0.012133333333333333 | 0.4 | ||
| LVL-fast | 0.012583333333333334 | 0.6 | ||
| LVL-fast | 0.011166666666666667 | 0.8 | ||
| LVL-fast | 0.012816666666666667 | 1.0 | ||
| LVL-fast | 0.00605 | 0.0 | ||
| LVL-fast | 0.00645 | 0.2 | ||
| LVL-fast | 0.008216666666666667 | 0.6 | ||
| LVL-fast | 0.0123 | 0.9 | ||
| LVL-fast | 0.010166666666666666 | 0.1 | ||
| LVL-fast | 0.010466666666666668 | 0.6 | ||
| LVL-fast | 0.00795 | 0.5 | ||
| LVL-fast | 0.012966666666666666 | 0.3 | ||
| LVL-fast | 0.012366666666666666 | 0.3 | ||
| LVL-fast | 0.012666666666666666 | 0.1 | ||
| LVL-fast | 0.007500000000000001 | 0.8 | ||
| LVL-fast | 0.007366666666666666 | 0.9 | ||
| LVL-fast | 0.01215 | 0.4 | ||
| LVL-fast | 0.00725 | 0.3 | ||
| LVL-fast | 0.012783333333333334 | 0.9 | ||
| LVL-fast | 0.012616666666666667 | 1.0 | ||
| LVL-fast | 0.00695 | 0.5 | ||
| LVL-fast | 0.011966666666666665 | 0.5 | 0.4444444444444444 | |
| LVL-fast | 0.00795 | 0.8 | ||
| LVL-fast | 0.0073 | 0.1 | ||
| LVL-fast | 0.008916666666666666 | 0.4 | ||
| LVL-fast | 0.005883333333333333 | 0.3 | ||
| LVL-fast | 0.011699999999999999 | 0.4 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.006516666666666667 | 0.4 | ||
| LVL-fast | 0.005816666666666666 | 0.0 | ||
| LVL-fast | 0.009300000000000001 | 0.7 | ||
| LVL-fast | 0.009783333333333333 | 0.4 | ||
| LVL-fast | 0.00535 | 0.8 | ||
| LVL-fast | 0.006516666666666667 | 0.5 | ||
| LVL-fast | 0.012433333333333333 | 0.8 | ||
| LVL-fast | 0.006383333333333334 | 0.7 | ||
| LVL-fast | 0.01175 | 0.6 | ||
| LVL-fast | 0.013066666666666667 | 0.7 | ||
| LVL-fast | 0.012416666666666666 | 0.2 | ||
| LVL-fast | 0.00645 | 0.6 | ||
| LVL-fast | 0.007116666666666666 | 1.0 | ||
| LVL-fast | 0.006016666666666667 | 0.0 | ||
| LVL-fast | 0.0105 | 0.7 | ||
| LVL-fast | 0.012616666666666667 | 0.1 | ||
| LVL-fast | 0.01045 | 0.5 | ||
| LVL-fast | 0.0059 | 0.1 | ||
| LVL-fast | 0.012333333333333333 | 0.2 | ||
| LVL-fast | 0.006583333333333333 | 0.2 | ||
| LVL-fast | 0.006483333333333333 | 0.2 | ||
| LVL-fast | 0.006933333333333333 | 0.9 | ||
| LVL-fast | 0.01095 | 0.5 | ||
| LVL-fast | 0.013216666666666666 | 0.7 | ||
| LVL-fast | 0.00885 | 0.5 | ||
| LVL-fast | 0.008516666666666667 | 0.0 | ||
| LVL-fast | 0.009433333333333332 | 0.5 | ||
| LVL-fast | 0.005516666666666667 | 0.9 | ||
| LVL-fast | 0.007266666666666667 | 0.7 | ||
| LVL-fast | 0.006316666666666667 | 0.8 | ||
| LVL-fast | 0.01255 | 0.6 | ||
| LVL-fast | 0.00655 | 0.7 | ||
| LVL-fast | 0.012083333333333333 | 0.8 | ||
| LVL-fast | 0.0098 | 0.8 | ||
| LVL-fast | 0.011983333333333334 | 0.9 | ||
| LVL-fast | 0.007233333333333333 | 0.5 | ||
| LVL-fast | 0.008216666666666667 | 0.9 | ||
| LVL-fast | 0.010133333333333333 | 0.1 | ||
| LVL-fast | 0.005533333333333334 | 0.5 | ||
| LVL-fast | 0.011899999999999999 | 0.4 | ||
| LVL-fast | 0.006033333333333333 | 0.8 | ||
| LVL-fast | 0.006083333333333333 | 0.1 | ||
| LVL-fast | 0.011666666666666665 | 0.9 | ||
| LVL-fast | 0.005366666666666667 | 0.3 | ||
| LVL-fast | 0.011183333333333333 | 0.1 | ||
| LVL-fast | 0.0059 | 0.8 | ||
| LVL-fast | 0.009233333333333335 | 0.7 | ||
| LVL-fast | 0.0059 | 0.2 | ||
| LVL-fast | 0.0052833333333333335 | 0.8 | ||
| LVL-fast | 0.011916666666666666 | 0.4 | ||
| LVL-fast | 0.008016666666666667 | 0.8 | ||
| LVL-fast | 0.0091 | 0.0 | ||
| LVL-fast | 0.009466666666666667 | 0.3 | ||
| LVL-fast | 0.011116666666666667 | 0.8 | ||
| LVL-fast | 0.007116666666666666 | 0.2 | ||
| LVL-fast | 0.007183333333333333 | 0.4 | ||
| LVL-fast | 0.0082 | 0.3 | ||
| LVL-fast | 0.00815 | 0.3 | ||
| LVL-fast | 0.011516666666666666 | 0.4 | ||
| LVL-fast | 0.0067 | 0.8 | ||
| LVL-fast | 0.009066666666666667 | 0.2 | ||
| LVL-fast | 0.006233333333333333 | 0.6 | ||
| LVL-fast | 0.006983333333333333 | 0.5 | ||
| LVL-fast | 0.012033333333333333 | 0.5 | ||
| LVL-fast | 0.006066666666666666 | 0.1 | ||
| LVL-fast | 0.009300000000000001 | 0.0 | ||
| LVL-fast | 0.006183333333333333 | 0.4 | ||
| LVL-fast | 0.0064 | 0.3 | ||
| LVL-fast | 0.012083333333333333 | 0.5 | ||
| LVL-fast | 0.01285 | 0.3 | ||
| LVL-fast | 0.010233333333333334 | 0.9 | ||
| LVL-fast | 0.0107 | 0.9 | ||
| LVL-fast | 0.007233333333333333 | 0.9 | ||
| LVL-fast | 0.0053 | 0.3 | ||
| LVL-fast | 0.009816666666666666 | 0.6 | ||
| LVL-fast | 0.012 | 0.6 | ||
| LVL-fast | 0.008966666666666668 | 0.3 | ||
| LVL-fast | 0.0128 | 0.3 | ||
| LVL-fast | 0.008866666666666667 | 0.5 | ||
| LVL-fast | 0.009966666666666667 | 0.9 | ||
| LVL-fast | 0.012750000000000001 | 0.0 | ||
| LVL-fast | 0.010316666666666667 | 0.6 | ||
| LVL-fast | 0.0112 | 0.1 | ||
| LVL-fast | 0.007716666666666667 | 0.5 | ||
| LVL-fast | 0.010016666666666667 | 0.0 | ||
| LVL-fast | 0.013183333333333333 | 0.3 | ||
| LVL-fast | 0.013033333333333334 | 0.5 | ||
| LVL-fast | 0.011066666666666667 | 0.7 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.006266666666666667 | 0.1 | ||
| LVL-fast | 0.005116666666666667 | 0.6 | ||
| LVL-fast | 0.009316666666666668 | 1.0 | ||
| LVL-fast | 0.008 | 0.6 | ||
| LVL-fast | 0.01235 | 0.3 | ||
| LVL-fast | 0.0127 | 0.0 | ||
| LVL-fast | 0.0059499999999999996 | 0.9 | ||
| LVL-fast | 0.0071333333333333335 | 0.9 | ||
| LVL-fast | 0.009433333333333332 | 0.9 | ||
| LVL-fast | 0.01025 | 0.8 | ||
| LVL-fast | 0.005966666666666666 | 0.4 | ||
| LVL-fast | 0.009733333333333333 | 0.0 | ||
| LVL-fast | 0.0114 | 0.9 | ||
| LVL-fast | 0.008866666666666667 | 0.0 | ||
| LVL-fast | 0.007083333333333333 | 0.0 | ||
| LVL-fast | 0.005233333333333334 | 0.3 | ||
| LVL-fast | 0.009483333333333333 | 0.3 | ||
| LVL-fast | 0.010916666666666667 | 0.3 | ||
| LVL-fast | 0.008083333333333333 | 0.8 | ||
| LVL-fast | 0.0084 | 0.5 | ||
| LVL-fast | 0.00705 | 0.2 | ||
| LVL-fast | 0.0129 | 0.7 | ||
| LVL-fast | 0.005333333333333333 | 0.3 | ||
| LVL-fast | 0.006750000000000001 | 1.0 | ||
| LVL-fast | 0.005066666666666666 | 0.1 | ||
| LVL-fast | 0.012533333333333334 | 0.9 | ||
| LVL-fast | 0.009200000000000002 | 1.0 | ||
| LVL-fast | 0.011566666666666666 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 0.9 | ||
| LVL-fast | 0.007216666666666666 | 0.7 | ||
| LVL-fast | 0.00615 | 0.1 | ||
| LVL-fast | 0.011166666666666667 | 0.7 | ||
| LVL-fast | 0.006233333333333333 | 0.9 | ||
| LVL-fast | 0.010666666666666666 | 0.8 | ||
| LVL-fast | 0.011899999999999999 | 0.6 | ||
| LVL-fast | 0.007866666666666666 | 0.1 | ||
| LVL-fast | 0.007266666666666667 | 0.3 | ||
| LVL-fast | 0.010516666666666667 | 0.8 | ||
| LVL-fast | 0.012066666666666667 | 0.6 | ||
| LVL-fast | 0.013300000000000001 | 0.5 | ||
| LVL-fast | 0.012383333333333333 | 0.7 | ||
| LVL-fast | 0.005783333333333333 | 0.8 | ||
| LVL-fast | 0.010683333333333333 | 0.1 | ||
| LVL-fast | 0.01115 | 0.2 | ||
| LVL-fast | 0.01065 | 0.2 | ||
| LVL-fast | 0.010416666666666666 | 0.0 | ||
| LVL-fast | 0.007633333333333334 | 0.2 | ||
| LVL-fast | 0.00655 | 0.2 | ||
| LVL-fast | 0.006016666666666667 | 0.2 | ||
| LVL-fast | 0.006500000000000001 | 0.1 | ||
| LVL-fast | 0.009649999999999999 | 0.9 | ||
| LVL-fast | 0.005216666666666666 | 0.6 | ||
| LVL-fast | 0.010683333333333333 | 1.0 | ||
| LVL-fast | 0.00785 | 0.5 | ||
| LVL-fast | 0.006733333333333333 | 0.6 | ||
| LVL-fast | 0.0086 | 0.9 | ||
| LVL-fast | 0.006383333333333334 | 0.2 | ||
| LVL-fast | 0.006466666666666667 | 0.1 | ||
| LVL-fast | 0.011583333333333333 | 1.0 | ||
| LVL-fast | 0.006066666666666666 | 0.4 | ||
| LVL-fast | 0.0062 | 0.7 | ||
| LVL-fast | 0.009566666666666666 | 0.7 | ||
| LVL-fast | 0.01315 | 0.4 | ||
| LVL-fast | 0.010883333333333333 | 0.2 | ||
| LVL-fast | 0.012583333333333334 | 0.4 | ||
| LVL-fast | 0.00605 | 0.6 | ||
| LVL-fast | 0.0062833333333333335 | 0.7 | ||
| LVL-fast | 0.0078000000000000005 | 0.7 | ||
| LVL-fast | 0.005416666666666667 | 1.0 | ||
| LVL-fast | 0.008966666666666668 | 0.8 | ||
| LVL-fast | 0.011433333333333334 | 0.6 | ||
| LVL-fast | 0.0125 | 0.4 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.011816666666666666 | 0.6 | ||
| LVL-fast | 0.00825 | 0.1 | ||
| LVL-fast | 0.0063 | 0.0 | ||
| LVL-fast | 0.00935 | 0.0 | ||
| LVL-fast | 0.012383333333333333 | 0.0 | ||
| LVL-fast | 0.007166666666666667 | 0.7 | ||
| LVL-fast | 0.0098 | 0.4 | ||
| LVL-fast | 0.006383333333333334 | 0.7 | ||
| LVL-fast | 0.0070999999999999995 | 0.5 | ||
| LVL-fast | 0.00885 | 0.9 | ||
| LVL-fast | 0.007533333333333334 | 0.9 | ||
| LVL-fast | 0.011166666666666667 | 0.6 | ||
| LVL-fast | 0.012633333333333333 | 0.1 | ||
| LVL-fast | 0.013083333333333334 | 1.0 | ||
| LVL-fast | 0.005983333333333333 | 0.4 | ||
| LVL-fast | 0.009016666666666668 | 0.4 | ||
| LVL-fast | 0.0077 | 0.5 | ||
| LVL-fast | 0.0081 | 0.9 | ||
| LVL-fast | 0.00785 | 0.1 | ||
| LVL-fast | 0.01235 | 0.8 | ||
| LVL-fast | 0.009566666666666666 | 0.4 | ||
| LVL-fast | 0.0095 | 0.9 | ||
| LVL-fast | 0.012733333333333334 | 0.5 | ||
| LVL-fast | 0.00605 | 0.6 | ||
| LVL-fast | 0.005016666666666667 | 0.1 | ||
| LVL-fast | 0.006 | 0.5 | ||
| LVL-fast | 0.005583333333333333 | 0.7 | ||
| LVL-fast | 0.013000000000000001 | 0.7 | ||
| LVL-fast | 0.0055000000000000005 | 0.4 | ||
| LVL-fast | 0.006849999999999999 | 0.8 | ||
| LVL-fast | 0.013300000000000001 | 0.9 | ||
| LVL-fast | 0.007366666666666666 | 0.2 | ||
| LVL-fast | 0.007866666666666666 | 0.3 | ||
| LVL-fast | 0.010083333333333333 | 0.1 | ||
| LVL-fast | 0.0083 | 0.5 | ||
| LVL-fast | 0.009516666666666666 | 0.6 | ||
| LVL-fast | 0.0057 | 0.7 | ||
| LVL-fast | 0.006516666666666667 | 0.2 | ||
| LVL-fast | 0.009983333333333334 | 0.3 | ||
| LVL-fast | 0.010183333333333332 | 0.3 | ||
| LVL-fast | 0.0128 | 0.4 | ||
| LVL-fast | 0.007216666666666666 | 0.7 | ||
| LVL-fast | 0.01115 | 1.0 | ||
| LVL-fast | 0.006666666666666667 | 0.1 | ||
| LVL-fast | 0.006083333333333333 | 0.4 | ||
| LVL-fast | 0.00805 | 0.8 | ||
| LVL-fast | 0.012116666666666666 | 0.1 | ||
| LVL-fast | 0.006666666666666667 | 0.9 | ||
| LVL-fast | 0.0108 | 0.0 | ||
| LVL-fast | 0.011133333333333334 | 0.6 | ||
| LVL-fast | 0.0053 | 0.2 | ||
| LVL-fast | 0.008583333333333333 | 0.8 | ||
| LVL-fast | 0.0128 | 0.3 | ||
| LVL-fast | 0.008766666666666667 | 0.1 | ||
| LVL-fast | 0.005983333333333333 | 1.0 | ||
| LVL-fast | 0.010816666666666667 | 0.2 | ||
| LVL-fast | 0.0072 | 0.7 | ||
| LVL-fast | 0.0118 | 0.7 | ||
| LVL-fast | 0.005316666666666667 | 0.5 | ||
| LVL-fast | 0.009233333333333335 | 1.0 | ||
| LVL-fast | 0.012966666666666666 | 0.3 | 0.5555555555555556 | |
| LVL-fast | 0.008433333333333333 | 0.9 | ||
| LVL-fast | 0.0123 | 0.0 | ||
| LVL-fast | 0.010966666666666668 | 1.0 | ||
| LVL-fast | 0.005416666666666667 | 1.0 | ||
| LVL-fast | 0.012 | 0.1 | ||
| LVL-fast | 0.013233333333333335 | 0.5 | ||
| LVL-fast | 0.009266666666666668 | 0.4 | ||
| LVL-fast | 0.009983333333333334 | 1.0 | ||
| LVL-fast | 0.009466666666666667 | 0.0 | ||
| LVL-fast | 0.0060999999999999995 | 0.9 | ||
| LVL-fast | 0.007566666666666667 | 0.1 | ||
| LVL-fast | 0.0076500000000000005 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.3 | ||
| LVL-fast | 0.0057666666666666665 | 0.3 | ||
| LVL-fast | 0.012933333333333333 | 0.1 | ||
| LVL-fast | 0.009083333333333334 | 0.0 | ||
| LVL-fast | 0.008700000000000001 | 0.2 | ||
| LVL-fast | 0.010266666666666667 | 0.1 | ||
| LVL-fast | 0.009766666666666667 | 0.0 | ||
| LVL-fast | 0.00815 | 0.0 | ||
| LVL-fast | 0.00755 | 0.3 | ||
| LVL-fast | 0.007566666666666667 | 0.5 | ||
| LVL-fast | 0.006500000000000001 | 0.2 | ||
| LVL-fast | 0.00645 | 0.4 | ||
| LVL-fast | 0.011899999999999999 | 0.4 | ||
| LVL-fast | 0.01295 | 0.1 | 0.4444444444444444 | |
| LVL-fast | 0.009616666666666666 | 0.7 | ||
| LVL-fast | 0.005533333333333334 | 0.9 | ||
| LVL-fast | 0.009133333333333334 | 1.0 | ||
| LVL-fast | 0.01 | 0.0 | ||
| LVL-fast | 0.012116666666666666 | 0.0 | ||
| LVL-fast | 0.01015 | 1.0 | ||
| LVL-fast | 0.009716666666666667 | 0.2 | ||
| LVL-fast | 0.013083333333333334 | 0.9 | ||
| LVL-fast | 0.006316666666666667 | 0.0 | ||
| LVL-fast | 0.011333333333333334 | 0.5 | ||
| LVL-fast | 0.012199999999999999 | 0.7 | ||
| LVL-fast | 0.006783333333333333 | 0.8 | ||
| LVL-fast | 0.012366666666666666 | 1.0 | ||
| LVL-fast | 0.01065 | 0.1 | ||
| LVL-fast | 0.011649999999999999 | 0.2 | ||
| LVL-fast | 0.012216666666666666 | 0.5 | ||
| LVL-fast | 0.00885 | 0.6 | ||
| LVL-fast | 0.00755 | 0.2 | ||
| LVL-fast | 0.010483333333333334 | 0.2 | ||
| LVL-fast | 0.013283333333333334 | 0.8 | ||
| LVL-fast | 0.009716666666666667 | 0.9 | ||
| LVL-fast | 0.005916666666666666 | 0.0 | ||
| LVL-fast | 0.008966666666666668 | 0.6 | 0.5555555555555556 | |
| LVL-fast | 0.01065 | 0.6 | 0.5555555555555556 | |
| LVL-fast | 0.0060999999999999995 | 0.2 | ||
| LVL-fast | 0.011616666666666666 | 0.9 | ||
| LVL-fast | 0.0104 | 0.6 | ||
| LVL-fast | 0.0059 | 0.3 | ||
| LVL-fast | 0.009783333333333333 | 0.1 | ||
| LVL-fast | 0.009399999999999999 | 0.2 | ||
| LVL-fast | 0.010666666666666666 | 0.2 | ||
| LVL-fast | 0.012766666666666667 | 0.9 | ||
| LVL-fast | 0.009183333333333333 | 0.4 | ||
| LVL-fast | 0.007883333333333332 | 0.2 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.0076166666666666666 | 0.4 | ||
| LVL-fast | 0.0101 | 0.8 | 0.4444444444444444 | |
| LVL-fast | 0.0123 | 0.4 | ||
| LVL-fast | 0.008666666666666666 | 0.9 | ||
| LVL-fast | 0.005983333333333333 | 0.6 | ||
| LVL-fast | 0.012633333333333333 | 0.1 | ||
| LVL-fast | 0.009200000000000002 | 0.9 | ||
| LVL-fast | 0.008516666666666667 | 0.3 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.012483333333333334 | 0.7 | ||
| LVL-fast | 0.006633333333333334 | 0.1 | ||
| LVL-fast | 0.0101 | 0.7 | ||
| LVL-fast | 0.009383333333333332 | 0.3 | ||
| LVL-fast | 0.012633333333333333 | 0.0 | ||
| LVL-fast | 0.01005 | 0.3 | ||
| LVL-fast | 0.005233333333333334 | 1.0 | ||
| LVL-fast | 0.009916666666666666 | 0.0 | ||
| LVL-fast | 0.01025 | 0.2 | 0.5555555555555556 | |
| LVL-fast | 0.011616666666666666 | 0.2 | ||
| LVL-fast | 0.005383333333333334 | 1.0 | ||
| LVL-fast | 0.0062 | 0.3 | ||
| LVL-fast | 0.00515 | 0.0 | ||
| LVL-fast | 0.009233333333333335 | 0.5 | ||
| LVL-fast | 0.006983333333333333 | 1.0 | ||
| LVL-fast | 0.008733333333333334 | 0.1 | ||
| LVL-fast | 0.010966666666666668 | 0.0 | ||
| LVL-fast | 0.00645 | 0.2 | ||
| LVL-fast | 0.006750000000000001 | 1.0 | ||
| LVL-fast | 0.007966666666666667 | 0.0 | ||
| LVL-fast | 0.010433333333333333 | 0.9 | ||
| LVL-fast | 0.0073 | 0.2 | ||
| LVL-fast | 0.0063 | 0.5 | ||
| LVL-fast | 0.0070999999999999995 | 1.0 | ||
| LVL-fast | 0.00715 | 0.5 | ||
| LVL-fast | 0.013083333333333334 | 0.6 | ||
| LVL-fast | 0.011250000000000001 | 0.2 | ||
| LVL-fast | 0.00705 | 0.8 | ||
| LVL-fast | 0.009166666666666667 | 0.7 | ||
| LVL-fast | 0.013316666666666668 | 1.0 | ||
| LVL-fast | 0.010333333333333333 | 0.8 | ||
| LVL-fast | 0.0091 | 0.4 | ||
| LVL-fast | 0.010633333333333333 | 0.2 | ||
| LVL-fast | 0.010283333333333334 | 0.1 | ||
| LVL-fast | 0.010566666666666667 | 0.9 | ||
| LVL-fast | 0.008683333333333333 | 0.7 | ||
| LVL-fast | 0.010433333333333333 | 0.4 | ||
| LVL-fast | 0.0057333333333333325 | 0.5 | ||
| LVL-fast | 0.008833333333333334 | 0.3 | ||
| LVL-fast | 0.011333333333333334 | 0.4 | ||
| LVL-fast | 0.006983333333333333 | 1.0 | ||
| LVL-fast | 0.013033333333333334 | 1.0 | ||
| LVL-fast | 0.01265 | 0.9 | ||
| LVL-fast | 0.005833333333333333 | 0.1 | ||
| LVL-fast | 0.008316666666666667 | 0.0 | ||
| LVL-fast | 0.00625 | 0.4 | ||
| LVL-fast | 0.0062 | 0.7 | ||
| LVL-fast | 0.011166666666666667 | 0.0 | 0.6666666666666666 | |
| LVL-fast | 0.011000000000000001 | 0.7 | ||
| LVL-fast | 0.006750000000000001 | 1.0 | ||
| LVL-fast | 0.008566666666666667 | 0.1 | ||
| LVL-fast | 0.009216666666666668 | 0.1 | ||
| LVL-fast | 0.011183333333333333 | 0.6 | ||
| LVL-fast | 0.009516666666666666 | 0.4 | ||
| LVL-fast | 0.010066666666666666 | 0.1 | ||
| LVL-fast | 0.01205 | 0.9 | ||
| LVL-fast | 0.006083333333333333 | 0.5 | ||
| LVL-fast | 0.005683333333333334 | 0.6 | ||
| LVL-fast | 0.01215 | 0.7 | ||
| LVL-fast | 0.008983333333333334 | 0.9 | ||
| LVL-fast | 0.00815 | 0.2 | ||
| LVL-fast | 0.011683333333333332 | 0.0 | ||
| LVL-fast | 0.008483333333333334 | 0.9 | ||
| LVL-fast | 0.010783333333333334 | 0.6 | ||
| LVL-fast | 0.008766666666666667 | 0.9 | ||
| LVL-fast | 0.006766666666666667 | 0.3 | ||
| LVL-fast | 0.010333333333333333 | 0.6 | ||
| LVL-fast | 0.01245 | 0.1 | ||
| LVL-fast | 0.011616666666666666 | 0.6 | ||
| LVL-fast | 0.0091 | 0.0 | ||
| LVL-fast | 0.0088 | 0.8 | ||
| LVL-fast | 0.011933333333333332 | 1.0 | ||
| LVL-fast | 0.008466666666666667 | 0.4 | 0.5555555555555556 | |
| LVL-fast | 0.0114 | 0.8 | ||
| LVL-fast | 0.007383333333333334 | 0.7 | ||
| LVL-fast | 0.0054 | 0.2 | ||
| LVL-fast | 0.01145 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 0.5 | ||
| LVL-fast | 0.011649999999999999 | 0.0 | ||
| LVL-fast | 0.010316666666666667 | 0.3 | ||
| LVL-fast | 0.012866666666666667 | 0.5 | ||
| LVL-fast | 0.011949999999999999 | 0.0 | ||
| LVL-fast | 0.0076500000000000005 | 0.3 | ||
| LVL-fast | 0.005483333333333334 | 0.3 | ||
| LVL-fast | 0.0107 | 0.1 | ||
| LVL-fast | 0.01135 | 0.6 | ||
| LVL-fast | 0.005366666666666667 | 0.9 | ||
| LVL-fast | 0.006733333333333333 | 0.4 | ||
| LVL-fast | 0.008366666666666666 | 0.3 | ||
| LVL-fast | 0.009933333333333332 | 0.7 | ||
| LVL-fast | 0.011966666666666665 | 0.0 | ||
| LVL-fast | 0.005816666666666666 | 0.8 | ||
| LVL-fast | 0.009949999999999999 | 0.9 | ||
| LVL-fast | 0.0083 | 0.3 | ||
| LVL-fast | 0.006583333333333333 | 1.0 | ||
| LVL-fast | 0.009583333333333333 | 0.8 | ||
| LVL-fast | 0.006683333333333334 | 1.0 | ||
| LVL-fast | 0.006750000000000001 | 0.5 | ||
| LVL-fast | 0.00515 | 0.6 | ||
| LVL-fast | 0.006849999999999999 | 0.1 | ||
| LVL-fast | 0.006966666666666666 | 0.0 | ||
| LVL-fast | 0.0057333333333333325 | 0.0 | ||
| LVL-fast | 0.0066500000000000005 | 1.0 | ||
| LVL-fast | 0.008016666666666667 | 0.8 | ||
| LVL-fast | 0.005866666666666667 | 0.4 | ||
| LVL-fast | 0.0128 | 0.1 | ||
| LVL-fast | 0.013300000000000001 | 0.5 | ||
| LVL-fast | 0.005616666666666667 | 0.2 | ||
| LVL-fast | 0.011366666666666667 | 0.0 | ||
| LVL-fast | 0.006316666666666667 | 0.7 | ||
| LVL-fast | 0.00695 | 1.0 | ||
| LVL-fast | 0.006016666666666667 | 0.9 | ||
| LVL-fast | 0.006583333333333333 | 0.5 | ||
| LVL-fast | 0.006233333333333333 | 0.8 | ||
| LVL-fast | 0.005716666666666667 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 0.1 | ||
| LVL-fast | 0.012216666666666666 | 0.0 | ||
| LVL-fast | 0.007916666666666666 | 0.2 | ||
| LVL-fast | 0.009383333333333332 | 0.8 | ||
| LVL-fast | 0.011816666666666666 | 0.7 | ||
| LVL-fast | 0.005383333333333334 | 0.3 | ||
| LVL-fast | 0.00805 | 0.8 | ||
| LVL-fast | 0.010233333333333334 | 0.2 | ||
| LVL-fast | 0.006466666666666667 | 0.9 | ||
| LVL-fast | 0.006483333333333333 | 0.6 | ||
| LVL-fast | 0.00645 | 1.0 | ||
| LVL-fast | 0.00815 | 0.2 | ||
| LVL-fast | 0.011233333333333335 | 0.8 | ||
| LVL-fast | 0.012983333333333335 | 0.7 | ||
| LVL-fast | 0.01265 | 1.0 | ||
| LVL-fast | 0.011966666666666665 | 0.7 | ||
| LVL-fast | 0.008566666666666667 | 0.6 | ||
| LVL-fast | 0.013066666666666667 | 0.8 | ||
| LVL-fast | 0.0111 | 0.0 | ||
| LVL-fast | 0.0052833333333333335 | 1.0 | ||
| LVL-fast | 0.00635 | 0.2 | ||
| LVL-fast | 0.00905 | 0.5 | ||
| LVL-fast | 0.009716666666666667 | 0.0 | ||
| LVL-fast | 0.0051333333333333335 | 0.1 | ||
| LVL-fast | 0.007266666666666667 | 0.1 | ||
| LVL-fast | 0.009449999999999998 | 0.5 | ||
| LVL-fast | 0.012883333333333333 | 1.0 | ||
| LVL-fast | 0.005583333333333333 | 0.8 | ||
| LVL-fast | 0.007216666666666666 | 0.9 | ||
| LVL-fast | 0.0071333333333333335 | 0.7 | ||
| LVL-fast | 0.011666666666666665 | 0.3 | ||
| LVL-fast | 0.009966666666666667 | 0.9 | ||
| LVL-fast | 0.012783333333333334 | 0.4 | ||
| LVL-fast | 0.011116666666666667 | 0.9 | ||
| LVL-fast | 0.01055 | 0.7 | ||
| LVL-fast | 0.005366666666666667 | 0.4 | ||
| LVL-fast | 0.010133333333333333 | 0.4 | ||
| LVL-fast | 0.013166666666666667 | 0.1 | ||
| LVL-fast | 0.0077 | 0.3 | ||
| LVL-fast | 0.006366666666666667 | 0.9 | ||
| LVL-fast | 0.007916666666666666 | 0.8 | ||
| LVL-fast | 0.00975 | 0.6 | ||
| LVL-fast | 0.012583333333333334 | 0.1 | ||
| LVL-fast | 0.0115 | 0.5 | ||
| LVL-fast | 0.007166666666666667 | 0.9 | ||
| LVL-fast | 0.0067 | 0.3 | ||
| LVL-fast | 0.012766666666666667 | 0.7 | ||
| LVL-fast | 0.007083333333333333 | 0.0 | ||
| LVL-fast | 0.008483333333333334 | 0.0 | ||
| LVL-fast | 0.005366666666666667 | 0.4 | ||
| LVL-fast | 0.008316666666666667 | 0.5 | ||
| LVL-fast | 0.00715 | 0.9 | ||
| LVL-fast | 0.0111 | 0.5 | ||
| LVL-fast | 0.009616666666666666 | 1.0 | ||
| LVL-fast | 0.009933333333333332 | 0.3 | ||
| LVL-fast | 0.012816666666666667 | 0.4 | ||
| LVL-fast | 0.011633333333333332 | 0.3 | ||
| LVL-fast | 0.0052 | 0.2 | ||
| LVL-fast | 0.006849999999999999 | 0.5 | ||
| LVL-fast | 0.008950000000000001 | 0.1 | ||
| LVL-fast | 0.011166666666666667 | 0.6 | ||
| LVL-fast | 0.005233333333333334 | 0.9 | ||
| LVL-fast | 0.012466666666666666 | 0.0 | ||
| LVL-fast | 0.01055 | 0.2 | ||
| LVL-fast | 0.011583333333333333 | 0.1 | ||
| LVL-fast | 0.012566666666666667 | 0.6 | ||
| LVL-fast | 0.010233333333333334 | 0.2 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.011216666666666668 | 1.0 | ||
| LVL-fast | 0.005016666666666667 | 0.6 | ||
| LVL-fast | 0.013116666666666667 | 0.9 | ||
| LVL-fast | 0.013116666666666667 | 0.2 | ||
| LVL-fast | 0.009766666666666667 | 0.4 | ||
| LVL-fast | 0.0064333333333333334 | 0.0 | ||
| LVL-fast | 0.0085 | 1.0 | ||
| LVL-fast | 0.009866666666666666 | 0.5 | ||
| LVL-fast | 0.00825 | 0.2 | ||
| LVL-fast | 0.007866666666666666 | 0.0 | ||
| LVL-fast | 0.006583333333333333 | 0.4 | ||
| LVL-fast | 0.005783333333333333 | 0.0 | ||
| LVL-fast | 0.0103 | 0.3 | ||
| LVL-fast | 0.007666666666666667 | 0.1 | ||
| LVL-fast | 0.010716666666666668 | 0.2 | ||
| LVL-fast | 0.011183333333333333 | 0.3 | ||
| LVL-fast | 0.008866666666666667 | 0.7 | ||
| LVL-fast | 0.005333333333333333 | 0.4 | ||
| LVL-fast | 0.007766666666666667 | 0.1 | ||
| LVL-fast | 0.0096 | 0.3 | ||
| LVL-fast | 0.010583333333333333 | 1.0 | ||
| LVL-fast | 0.009433333333333332 | 0.5 | ||
| LVL-fast | 0.0056500000000000005 | 0.2 | ||
| LVL-fast | 0.0073 | 0.2 | ||
| LVL-fast | 0.008683333333333333 | 0.3 | ||
| LVL-fast | 0.005416666666666667 | 0.5 | ||
| LVL-fast | 0.011333333333333334 | 0.5 | ||
| LVL-fast | 0.008783333333333334 | 0.6 | ||
| LVL-fast | 0.0131 | 0.4 | ||
| LVL-fast | 0.006616666666666667 | 0.6 | ||
| LVL-fast | 0.013266666666666668 | 0.0 | ||
| LVL-fast | 0.011966666666666665 | 0.9 | ||
| LVL-fast | 0.012783333333333334 | 0.5 | ||
| LVL-fast | 0.011366666666666667 | 0.4 | ||
| LVL-fast | 0.009383333333333332 | 0.1 | ||
| LVL-fast | 0.008883333333333333 | 0.4 | ||
| LVL-fast | 0.0059 | 0.3 | ||
| LVL-fast | 0.008733333333333334 | 0.8 | ||
| LVL-fast | 0.008116666666666666 | 0.8 | ||
| LVL-fast | 0.008233333333333334 | 0.1 | ||
| LVL-fast | 0.00875 | 0.3 | ||
| LVL-fast | 0.006583333333333333 | 0.7 | ||
| LVL-fast | 0.009916666666666666 | 0.5 | ||
| LVL-fast | 0.0098 | 0.1 | ||
| LVL-fast | 0.0071333333333333335 | 0.3 | ||
| LVL-fast | 0.011216666666666668 | 0.1 | ||
| LVL-fast | 0.012750000000000001 | 0.2 | ||
| LVL-fast | 0.008166666666666666 | 0.2 | ||
| LVL-fast | 0.01115 | 0.0 | ||
| LVL-fast | 0.011983333333333334 | 0.4 | ||
| LVL-fast | 0.009466666666666667 | 0.8 | ||
| LVL-fast | 0.009649999999999999 | 0.6 | ||
| LVL-fast | 0.01245 | 0.0 | ||
| LVL-fast | 0.007033333333333333 | 0.2 | ||
| LVL-fast | 0.011133333333333334 | 1.0 | ||
| LVL-fast | 0.009433333333333332 | 0.0 | ||
| LVL-fast | 0.013266666666666668 | 0.9 | ||
| LVL-fast | 0.009449999999999998 | 1.0 | ||
| LVL-fast | 0.007083333333333333 | 0.6 | ||
| LVL-fast | 0.010733333333333334 | 0.0 | ||
| LVL-fast | 0.009533333333333333 | 0.3 | ||
| LVL-fast | 0.009316666666666668 | 0.8 | ||
| LVL-fast | 0.010616666666666667 | 0.9 | ||
| LVL-fast | 0.012633333333333333 | 0.5 | ||
| LVL-fast | 0.00535 | 0.1 | ||
| LVL-fast | 0.0077 | 0.9 | ||
| LVL-fast | 0.010916666666666667 | 0.6 | ||
| LVL-fast | 0.007883333333333332 | 0.3 | ||
| LVL-fast | 0.010016666666666667 | 0.4 | ||
| LVL-fast | 0.006466666666666667 | 0.5 | ||
| LVL-fast | 0.007866666666666666 | 0.1 | ||
| LVL-fast | 0.005666666666666667 | 0.2 | ||
| LVL-fast | 0.01305 | 1.0 | ||
| LVL-fast | 0.0128 | 0.0 | ||
| LVL-fast | 0.007766666666666667 | 0.7 | ||
| LVL-fast | 0.009516666666666666 | 1.0 | ||
| LVL-fast | 0.012766666666666667 | 0.4 | ||
| LVL-fast | 0.0112 | 0.3 | ||
| LVL-fast | 0.012266666666666667 | 0.5 | ||
| LVL-fast | 0.006216666666666666 | 0.8 | ||
| LVL-fast | 0.011516666666666666 | 0.9 | ||
| LVL-fast | 0.008866666666666667 | 1.0 | ||
| LVL-fast | 0.008483333333333334 | 0.6 | ||
| LVL-fast | 0.0082 | 0.9 | ||
| LVL-fast | 0.008383333333333333 | 0.5 | ||
| LVL-fast | 0.009116666666666667 | 0.4 | ||
| LVL-fast | 0.010616666666666667 | 0.0 | ||
| LVL-fast | 0.009233333333333335 | 0.6 | ||
| LVL-fast | 0.010816666666666667 | 0.0 | ||
| LVL-fast | 0.007666666666666667 | 0.2 | ||
| LVL-fast | 0.012966666666666666 | 0.1 | ||
| LVL-fast | 0.010633333333333333 | 0.7 | ||
| LVL-fast | 0.007416666666666667 | 0.5 | ||
| LVL-fast | 0.009233333333333335 | 0.4 | ||
| LVL-fast | 0.011383333333333334 | 0.3 | ||
| LVL-fast | 0.006166666666666667 | 0.4 | ||
| LVL-fast | 0.009966666666666667 | 0.7 | ||
| LVL-fast | 0.011866666666666666 | 0.5 | ||
| LVL-fast | 0.005566666666666667 | 0.8 | ||
| LVL-fast | 0.011699999999999999 | 0.4 | ||
| LVL-fast | 0.008683333333333333 | 0.7 | ||
| LVL-fast | 0.010116666666666666 | 0.6 | ||
| LVL-fast | 0.007033333333333333 | 0.3 | ||
| LVL-fast | 0.005566666666666667 | 0.7 | ||
| LVL-fast | 0.00815 | 0.2 | ||
| LVL-fast | 0.013166666666666667 | 1.0 | ||
| LVL-fast | 0.011433333333333334 | 0.4 | ||
| LVL-fast | 0.005 | 0.5 | ||
| LVL-fast | 0.006233333333333333 | 0.4 | ||
| LVL-fast | 0.006833333333333333 | 0.7 | ||
| LVL-fast | 0.006116666666666667 | 0.8 | ||
| LVL-fast | 0.008 | 0.1 | ||
| LVL-fast | 0.012566666666666667 | 0.1 | ||
| LVL-fast | 0.0064333333333333334 | 0.3 | ||
| LVL-fast | 0.006516666666666667 | 0.6 | ||
| LVL-fast | 0.010116666666666666 | 0.6 | ||
| LVL-fast | 0.008366666666666666 | 1.0 | ||
| LVL-fast | 0.011466666666666665 | 0.0 | ||
| LVL-fast | 0.008583333333333333 | 0.2 | ||
| LVL-fast | 0.00575 | 0.5 | ||
| LVL-fast | 0.009416666666666665 | 0.2 | ||
| LVL-fast | 0.006816666666666666 | 0.3 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.005333333333333333 | 0.1 | ||
| LVL-fast | 0.0129 | 0.1 | ||
| LVL-fast | 0.009366666666666667 | 0.8 | ||
| LVL-fast | 0.0125 | 0.3 | ||
| LVL-fast | 0.0109 | 0.3 | ||
| LVL-fast | 0.010316666666666667 | 0.2 | ||
| LVL-fast | 0.012116666666666666 | 0.8 | ||
| LVL-fast | 0.010533333333333334 | 0.3 | ||
| LVL-fast | 0.008966666666666668 | 0.5 | ||
| LVL-fast | 0.005066666666666666 | 1.0 | ||
| LVL-fast | 0.011633333333333332 | 0.4 | ||
| LVL-fast | 0.006383333333333334 | 1.0 | ||
| LVL-fast | 0.010816666666666667 | 0.7 | ||
| LVL-fast | 0.010183333333333332 | 0.6 | ||
| LVL-fast | 0.007583333333333333 | 0.8 | ||
| LVL-fast | 0.01305 | 0.6 | ||
| LVL-fast | 0.0050999999999999995 | 0.1 | ||
| LVL-fast | 0.011833333333333333 | 0.1 | ||
| LVL-fast | 0.008483333333333334 | 0.5 | ||
| LVL-fast | 0.006083333333333333 | 0.3 | ||
| LVL-fast | 0.009016666666666668 | 0.7 | ||
| LVL-fast | 0.012116666666666666 | 0.3 | ||
| LVL-fast | 0.009983333333333334 | 0.0 | ||
| LVL-fast | 0.009733333333333333 | 0.3 | ||
| LVL-fast | 0.009449999999999998 | 1.0 | ||
| LVL-fast | 0.0124 | 0.9 | ||
| LVL-fast | 0.009949999999999999 | 0.2 | ||
| LVL-fast | 0.011316666666666668 | 0.1 | ||
| LVL-fast | 0.011833333333333333 | 0.1 | ||
| LVL-fast | 0.011183333333333333 | 0.0 | ||
| LVL-fast | 0.011666666666666665 | 0.7 | ||
| LVL-fast | 0.010816666666666667 | 0.3 | ||
| LVL-fast | 0.012733333333333334 | 0.3 | ||
| LVL-fast | 0.005866666666666667 | 0.6 | ||
| LVL-fast | 0.006166666666666667 | 0.1 | ||
| LVL-fast | 0.006666666666666667 | 0.8 | ||
| LVL-fast | 0.012783333333333334 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 1.0 | ||
| LVL-fast | 0.01085 | 1.0 | ||
| LVL-fast | 0.010383333333333333 | 0.0 | ||
| LVL-fast | 0.005366666666666667 | 0.0 | ||
| LVL-fast | 0.009266666666666668 | 0.8 | ||
| LVL-fast | 0.00645 | 0.8 | ||
| LVL-fast | 0.010033333333333333 | 1.0 | ||
| LVL-fast | 0.007916666666666666 | 1.0 | ||
| LVL-fast | 0.013216666666666666 | 0.1 | ||
| LVL-fast | 0.009366666666666667 | 0.0 | ||
| LVL-fast | 0.010283333333333334 | 0.3 | ||
| LVL-fast | 0.0118 | 0.2 | ||
| LVL-fast | 0.009983333333333334 | 0.1 | ||
| LVL-fast | 0.010783333333333334 | 0.4 | ||
| LVL-fast | 0.013033333333333334 | 0.6 | ||
| LVL-fast | 0.005533333333333334 | 0.7 | ||
| LVL-fast | 0.00745 | 0.4 | ||
| LVL-fast | 0.010983333333333335 | 0.6 | ||
| LVL-fast | 0.012166666666666666 | 0.1 | ||
| LVL-fast | 0.0081 | 0.5 | ||
| LVL-fast | 0.010199999999999999 | 0.0 | ||
| LVL-fast | 0.007316666666666667 | 0.9 | ||
| LVL-fast | 0.007516666666666667 | 0.7 | ||
| LVL-fast | 0.007783333333333334 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.5 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.007833333333333333 | 0.7 | ||
| LVL-fast | 0.00855 | 0.4 | ||
| LVL-fast | 0.006616666666666667 | 0.1 | ||
| LVL-fast | 0.0053 | 0.8 | ||
| LVL-fast | 0.008950000000000001 | 0.6 | ||
| LVL-fast | 0.013000000000000001 | 0.2 | ||
| LVL-fast | 0.0074 | 0.0 | ||
| LVL-fast | 0.011333333333333334 | 0.6 | ||
| LVL-fast | 0.010216666666666667 | 0.3 | ||
| LVL-fast | 0.008216666666666667 | 0.4 | ||
| LVL-fast | 0.0062833333333333335 | 0.3 | ||
| LVL-fast | 0.0054666666666666665 | 0.9 | ||
| LVL-fast | 0.0128 | 0.0 | ||
| LVL-fast | 0.00705 | 0.1 | ||
| LVL-fast | 0.009133333333333334 | 0.5 | ||
| LVL-fast | 0.008166666666666666 | 0.3 | ||
| LVL-fast | 0.008216666666666667 | 0.3 | ||
| LVL-fast | 0.0084 | 0.9 | ||
| LVL-fast | 0.007816666666666666 | 0.6 | ||
| LVL-fast | 0.007116666666666666 | 0.6 | ||
| LVL-fast | 0.013300000000000001 | 0.5 | ||
| LVL-fast | 0.007416666666666667 | 0.7 | ||
| LVL-fast | 0.012016666666666667 | 0.4 | ||
| LVL-fast | 0.007933333333333332 | 0.0 | ||
| LVL-fast | 0.008733333333333334 | 0.9 | ||
| LVL-fast | 0.0063 | 0.1 | ||
| LVL-fast | 0.009200000000000002 | 0.0 | ||
| LVL-fast | 0.010566666666666667 | 0.3 | ||
| LVL-fast | 0.008583333333333333 | 0.8 | ||
| LVL-fast | 0.0125 | 0.8 | ||
| LVL-fast | 0.0114 | 0.5 | ||
| LVL-fast | 0.009666666666666665 | 0.7 | ||
| LVL-fast | 0.007516666666666667 | 0.8 | ||
| LVL-fast | 0.012433333333333333 | 1.0 | ||
| LVL-fast | 0.008483333333333334 | 0.6 | ||
| LVL-fast | 0.006633333333333334 | 0.1 | ||
| LVL-fast | 0.011216666666666668 | 0.5 | ||
| LVL-fast | 0.005583333333333333 | 0.5 | ||
| LVL-fast | 0.0109 | 1.0 | ||
| LVL-fast | 0.013116666666666667 | 0.1 | ||
| LVL-fast | 0.009916666666666666 | 0.5 | ||
| LVL-fast | 0.00645 | 0.9 | ||
| LVL-fast | 0.012283333333333334 | 0.0 | ||
| LVL-fast | 0.01255 | 0.8 | ||
| LVL-fast | 0.012033333333333333 | 0.7 | ||
| LVL-fast | 0.005983333333333333 | 0.7 | ||
| LVL-fast | 0.012833333333333334 | 0.4 | ||
| LVL-fast | 0.012266666666666667 | 0.7 | ||
| LVL-fast | 0.0104 | 1.0 | ||
| LVL-fast | 0.01155 | 0.2 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.0057 | 0.7 | ||
| LVL-fast | 0.006966666666666666 | 0.6 | ||
| LVL-fast | 0.0077 | 0.2 | ||
| LVL-fast | 0.011166666666666667 | 0.3 | ||
| LVL-fast | 0.005933333333333333 | 0.8 | ||
| LVL-fast | 0.008766666666666667 | 0.4 | ||
| LVL-fast | 0.008416666666666666 | 0.5 | ||
| LVL-fast | 0.005516666666666667 | 1.0 | ||
| LVL-fast | 0.007416666666666667 | 0.8 | ||
| LVL-fast | 0.0124 | 0.0 | ||
| LVL-fast | 0.013000000000000001 | 0.8 | ||
| LVL-fast | 0.013250000000000001 | 0.3 | ||
| LVL-fast | 0.009300000000000001 | 0.2 | ||
| LVL-fast | 0.01185 | 0.1 | ||
| LVL-fast | 0.009666666666666665 | 0.0 | ||
| LVL-fast | 0.010983333333333335 | 0.8 | ||
| LVL-fast | 0.012683333333333333 | 0.6 | ||
| LVL-fast | 0.0076 | 0.4 | ||
| LVL-fast | 0.011366666666666667 | 0.5 | ||
| LVL-fast | 0.008633333333333333 | 0.1 | ||
| LVL-fast | 0.01145 | 0.2 | ||
| LVL-fast | 0.0057666666666666665 | 0.6 | ||
| LVL-fast | 0.009699999999999999 | 1.0 | ||
| LVL-fast | 0.0098 | 0.6 | ||
| LVL-fast | 0.01255 | 0.0 | ||
| LVL-fast | 0.007566666666666667 | 0.1 | ||
| LVL-fast | 0.007033333333333333 | 0.0 | ||
| LVL-fast | 0.005483333333333334 | 0.5 | ||
| LVL-fast | 0.010383333333333333 | 0.0 | ||
| LVL-fast | 0.009066666666666667 | 1.0 | ||
| LVL-fast | 0.010016666666666667 | 0.8 | ||
| LVL-fast | 0.011133333333333334 | 0.9 | ||
| LVL-fast | 0.009916666666666666 | 1.0 | ||
| LVL-fast | 0.006849999999999999 | 0.3 | ||
| LVL-fast | 0.011066666666666667 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 0.0 | ||
| LVL-fast | 0.008783333333333334 | 0.9 | ||
| LVL-fast | 0.006583333333333333 | 0.6 | ||
| LVL-fast | 0.009233333333333335 | 0.4 | ||
| LVL-fast | 0.00505 | 0.7 | ||
| LVL-fast | 0.012583333333333334 | 0.1 | ||
| LVL-fast | 0.008233333333333334 | 0.6 | ||
| LVL-fast | 0.011683333333333332 | 0.9 | ||
| LVL-fast | 0.009366666666666667 | 0.1 | ||
| LVL-fast | 0.00955 | 0.3 | ||
| LVL-fast | 0.0069 | 0.1 | ||
| LVL-fast | 0.007016666666666667 | 0.8 | ||
| LVL-fast | 0.0057333333333333325 | 0.4 | ||
| LVL-fast | 0.01025 | 0.4 | ||
| LVL-fast | 0.010750000000000001 | 0.5 | ||
| LVL-fast | 0.005016666666666667 | 0.9 | ||
| LVL-fast | 0.008916666666666666 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 0.7 | ||
| LVL-fast | 0.012750000000000001 | 0.8 | ||
| LVL-fast | 0.005416666666666667 | 0.5 | ||
| LVL-fast | 0.01035 | 0.0 | ||
| LVL-fast | 0.011266666666666668 | 0.6 | ||
| LVL-fast | 0.010383333333333333 | 0.4 | ||
| LVL-fast | 0.012416666666666666 | 0.5 | ||
| LVL-fast | 0.012366666666666666 | 0.7 | ||
| LVL-fast | 0.009233333333333335 | 0.3 | ||
| LVL-fast | 0.009366666666666667 | 0.9 | ||
| LVL-fast | 0.011883333333333333 | 0.4 | ||
| LVL-fast | 0.01065 | 0.6 | ||
| LVL-fast | 0.0078000000000000005 | 0.9 | ||
| LVL-fast | 0.007166666666666667 | 0.1 | ||
| LVL-fast | 0.012366666666666666 | 0.0 | ||
| LVL-fast | 0.0070999999999999995 | 0.6 | ||
| LVL-fast | 0.010816666666666667 | 0.0 | ||
| LVL-fast | 0.0116 | 0.9 | ||
| LVL-fast | 0.00605 | 0.6 | ||
| LVL-fast | 0.007766666666666667 | 0.0 | ||
| LVL-fast | 0.010816666666666667 | 0.2 | ||
| LVL-fast | 0.005316666666666667 | 1.0 | ||
| LVL-fast | 0.0051333333333333335 | 0.7 | ||
| LVL-fast | 0.008516666666666667 | 0.2 | 0.6666666666666666 | |
| LVL-fast | 0.010266666666666667 | 1.0 | 0.6666666666666666 | |
| LVL-fast | 0.01095 | 0.5 | ||
| LVL-fast | 0.012666666666666666 | 0.3 | ||
| LVL-fast | 0.009883333333333333 | 0.5 | ||
| LVL-fast | 0.013300000000000001 | 0.4 | ||
| LVL-fast | 0.012033333333333333 | 0.9 | ||
| LVL-fast | 0.00745 | 0.5 | ||
| LVL-fast | 0.013033333333333334 | 0.9 | ||
| LVL-fast | 0.009083333333333334 | 0.9 | ||
| LVL-fast | 0.0109 | 1.0 | ||
| LVL-fast | 0.012766666666666667 | 0.8 | ||
| LVL-fast | 0.012233333333333334 | 0.5 | ||
| LVL-fast | 0.00695 | 0.6 | ||
| LVL-fast | 0.006666666666666667 | 0.8 | ||
| LVL-fast | 0.0127 | 0.0 | ||
| LVL-fast | 0.008133333333333333 | 0.6 | ||
| LVL-fast | 0.00855 | 0.4 | ||
| LVL-fast | 0.008 | 0.2 | ||
| LVL-fast | 0.011333333333333334 | 0.8 | ||
| LVL-fast | 0.0057333333333333325 | 0.2 | ||
| LVL-fast | 0.005666666666666667 | 0.0 | ||
| LVL-fast | 0.007216666666666666 | 0.9 | ||
| LVL-fast | 0.012716666666666666 | 0.7 | ||
| LVL-fast | 0.012199999999999999 | 0.7 | ||
| LVL-fast | 0.0053 | 0.3 | ||
| LVL-fast | 0.008716666666666668 | 0.4 | ||
| LVL-fast | 0.012716666666666666 | 0.8 | ||
| LVL-fast | 0.0114 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 0.2 | ||
| LVL-fast | 0.010616666666666667 | 0.9 | ||
| LVL-fast | 0.012666666666666666 | 0.8 | ||
| LVL-fast | 0.005849999999999999 | 0.4 | ||
| LVL-fast | 0.011466666666666665 | 0.2 | ||
| LVL-fast | 0.010383333333333333 | 0.8 | ||
| LVL-fast | 0.010516666666666667 | 0.1 | ||
| LVL-fast | 0.007933333333333332 | 0.9 | ||
| LVL-fast | 0.01115 | 0.0 | ||
| LVL-fast | 0.008166666666666666 | 0.7 | ||
| LVL-fast | 0.012083333333333333 | 0.9 | ||
| LVL-fast | 0.009833333333333333 | 0.6 | ||
| LVL-fast | 0.009216666666666668 | 0.9 | ||
| LVL-fast | 0.008266666666666667 | 0.7 | ||
| LVL-fast | 0.0068 | 0.6 | ||
| LVL-fast | 0.012716666666666666 | 0.7 | ||
| LVL-fast | 0.00525 | 0.0 | ||
| LVL-fast | 0.0085 | 0.1 | ||
| LVL-fast | 0.008700000000000001 | 0.9 | ||
| LVL-fast | 0.007750000000000001 | 0.5 | ||
| LVL-fast | 0.013183333333333333 | 0.1 | ||
| LVL-fast | 0.00915 | 0.5 | ||
| LVL-fast | 0.006683333333333334 | 0.3 | ||
| LVL-fast | 0.006 | 0.9 | ||
| LVL-fast | 0.008216666666666667 | 0.5 | ||
| LVL-fast | 0.0085 | 0.0 | ||
| LVL-fast | 0.007466666666666667 | 0.3 | ||
| LVL-fast | 0.0055000000000000005 | 0.9 | ||
| LVL-fast | 0.009266666666666668 | 0.1 | ||
| LVL-fast | 0.013033333333333334 | 1.0 | ||
| LVL-fast | 0.009216666666666668 | 0.0 | ||
| LVL-fast | 0.006183333333333333 | 0.2 | ||
| LVL-fast | 0.00605 | 0.8 | ||
| LVL-fast | 0.006466666666666667 | 0.2 | ||
| LVL-fast | 0.012433333333333333 | 0.3 | ||
| LVL-fast | 0.009166666666666667 | 0.4 | ||
| LVL-fast | 0.009949999999999999 | 0.4 | ||
| LVL-fast | 0.00795 | 1.0 | ||
| LVL-fast | 0.01025 | 0.5 | ||
| LVL-fast | 0.010683333333333333 | 0.8 | ||
| LVL-fast | 0.008950000000000001 | 0.3 | ||
| LVL-fast | 0.012733333333333334 | 0.5 | ||
| LVL-fast | 0.013300000000000001 | 0.1 | ||
| LVL-fast | 0.007583333333333333 | 0.4 | ||
| LVL-fast | 0.012566666666666667 | 0.6 | ||
| LVL-fast | 0.013316666666666668 | 0.9 | ||
| LVL-fast | 0.007366666666666666 | 0.4 | ||
| LVL-fast | 0.005 | 0.7 | ||
| LVL-fast | 0.0055000000000000005 | 0.0 | ||
| LVL-fast | 0.009116666666666667 | 0.8 | ||
| LVL-fast | 0.011583333333333333 | 0.6 | ||
| LVL-fast | 0.011116666666666667 | 0.8 | ||
| LVL-fast | 0.0078000000000000005 | 0.8 | ||
| LVL-fast | 0.011166666666666667 | 0.2 | ||
| LVL-fast | 0.005533333333333334 | 0.2 | ||
| LVL-fast | 0.007866666666666666 | 0.7 | ||
| LVL-fast | 0.007966666666666667 | 0.7 | ||
| LVL-fast | 0.008116666666666666 | 0.9 | ||
| LVL-fast | 0.0064 | 0.6 | ||
| LVL-fast | 0.01135 | 0.9 | ||
| LVL-fast | 0.006216666666666666 | 0.4 | ||
| LVL-fast | 0.011216666666666668 | 0.3 | ||
| LVL-fast | 0.006083333333333333 | 0.6 | ||
| LVL-fast | 0.0114 | 0.6 | ||
| LVL-fast | 0.010566666666666667 | 0.3 | ||
| LVL-fast | 0.008266666666666667 | 0.9 | ||
| LVL-fast | 0.013216666666666666 | 0.8 | ||
| LVL-fast | 0.011433333333333334 | 0.7 | ||
| LVL-fast | 0.009216666666666668 | 0.7 | ||
| LVL-fast | 0.012183333333333332 | 0.4 | ||
| LVL-fast | 0.006016666666666667 | 0.2 | ||
| LVL-fast | 0.00955 | 0.5 | ||
| LVL-fast | 0.008333333333333333 | 1.0 | ||
| LVL-fast | 0.01005 | 1.0 | ||
| LVL-fast | 0.0085 | 0.0 | ||
| LVL-fast | 0.007716666666666667 | 0.7 | ||
| LVL-fast | 0.0059 | 0.5 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.008783333333333334 | 0.1 | ||
| LVL-fast | 0.011066666666666667 | 1.0 | ||
| LVL-fast | 0.005066666666666666 | 0.7 | ||
| LVL-fast | 0.0114 | 0.5 | ||
| LVL-fast | 0.010566666666666667 | 0.8 | ||
| LVL-fast | 0.0076500000000000005 | 0.9 | ||
| LVL-fast | 0.007666666666666667 | 0.4 | ||
| LVL-fast | 0.00545 | 0.6 | ||
| LVL-fast | 0.011533333333333333 | 0.6 | ||
| LVL-fast | 0.00975 | 0.1 | ||
| LVL-fast | 0.006883333333333333 | 0.0 | ||
| LVL-fast | 0.009633333333333332 | 0.3 | ||
| LVL-fast | 0.007666666666666667 | 0.5 | ||
| LVL-fast | 0.012616666666666667 | 0.3 | ||
| LVL-fast | 0.011583333333333333 | 0.7 | ||
| LVL-fast | 0.009949999999999999 | 0.8 | ||
| LVL-fast | 0.009333333333333334 | 0.1 | ||
| LVL-fast | 0.006516666666666667 | 0.2 | ||
| LVL-fast | 0.008633333333333333 | 0.4 | ||
| LVL-fast | 0.009649999999999999 | 0.9 | ||
| LVL-fast | 0.007633333333333334 | 0.6 | ||
| LVL-fast | 0.00745 | 0.8 | ||
| LVL-fast | 0.0058 | 0.5 | ||
| LVL-fast | 0.009783333333333333 | 0.2 | ||
| LVL-fast | 0.010083333333333333 | 0.4 | ||
| LVL-fast | 0.010183333333333332 | 0.5 | ||
| LVL-fast | 0.005083333333333333 | 0.3 | ||
| LVL-fast | 0.0088 | 0.1 | ||
| LVL-fast | 0.0114 | 0.4 | ||
| LVL-fast | 0.011816666666666666 | 0.8 | ||
| LVL-fast | 0.010583333333333333 | 0.7 | ||
| LVL-fast | 0.009933333333333332 | 0.9 | ||
| LVL-fast | 0.007066666666666666 | 0.7 | ||
| LVL-fast | 0.008116666666666666 | 0.3 | ||
| LVL-fast | 0.010183333333333332 | 0.9 | ||
| LVL-fast | 0.0118 | 0.0 | ||
| LVL-fast | 0.0082 | 0.9 | ||
| LVL-fast | 0.0062833333333333335 | 0.6 | ||
| LVL-fast | 0.010083333333333333 | 0.8 | ||
| LVL-fast | 0.005833333333333333 | 0.5 | ||
| LVL-fast | 0.012183333333333332 | 0.6 | ||
| LVL-fast | 0.006483333333333333 | 0.7 | ||
| LVL-fast | 0.007266666666666667 | 0.6 | ||
| LVL-fast | 0.008216666666666667 | 0.3 | ||
| LVL-fast | 0.007366666666666666 | 1.0 | ||
| LVL-fast | 0.006216666666666666 | 0.3 | ||
| LVL-fast | 0.006483333333333333 | 1.0 | ||
| LVL-fast | 0.005 | 0.4 | ||
| LVL-fast | 0.01095 | 0.6 | ||
| LVL-fast | 0.006766666666666667 | 0.8 | ||
| LVL-fast | 0.012583333333333334 | 0.2 | ||
| LVL-fast | 0.010066666666666666 | 0.8 | ||
| LVL-fast | 0.006933333333333333 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.1 | ||
| LVL-fast | 0.012433333333333333 | 0.2 | ||
| LVL-fast | 0.012466666666666666 | 0.2 | ||
| LVL-fast | 0.011233333333333335 | 0.6 | ||
| LVL-fast | 0.0061333333333333335 | 0.6 | ||
| LVL-fast | 0.006983333333333333 | 0.2 | ||
| LVL-fast | 0.0054666666666666665 | 0.1 | ||
| LVL-fast | 0.006033333333333333 | 0.6 | ||
| LVL-fast | 0.008700000000000001 | 0.8 | ||
| LVL-fast | 0.008833333333333334 | 1.0 | ||
| LVL-fast | 0.005616666666666667 | 0.9 | ||
| LVL-fast | 0.0064 | 0.2 | ||
| LVL-fast | 0.01085 | 0.9 | ||
| LVL-fast | 0.009716666666666667 | 0.1 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.007883333333333332 | 0.6 | ||
| LVL-fast | 0.011583333333333333 | 0.5 | ||
| LVL-fast | 0.006316666666666667 | 0.4 | ||
| LVL-fast | 0.0074333333333333335 | 0.2 | ||
| LVL-fast | 0.005516666666666667 | 0.0 | ||
| LVL-fast | 0.010750000000000001 | 0.6 | ||
| LVL-fast | 0.0052 | 0.5 | ||
| LVL-fast | 0.01085 | 0.2 | ||
| LVL-fast | 0.008766666666666667 | 1.0 | ||
| LVL-fast | 0.010033333333333333 | 1.0 | ||
| LVL-fast | 0.00645 | 0.8 | ||
| LVL-fast | 0.010016666666666667 | 0.4 | ||
| LVL-fast | 0.005866666666666667 | 0.9 | ||
| LVL-fast | 0.0115 | 0.9 | ||
| LVL-fast | 0.005583333333333333 | 0.4 | ||
| LVL-fast | 0.012283333333333334 | 0.7 | ||
| LVL-fast | 0.007466666666666667 | 0.4 | ||
| LVL-fast | 0.007583333333333333 | 0.9 | ||
| LVL-fast | 0.011633333333333332 | 0.3 | ||
| LVL-fast | 0.008266666666666667 | 0.1 | ||
| LVL-fast | 0.008766666666666667 | 0.0 | ||
| LVL-fast | 0.008333333333333333 | 1.0 | ||
| LVL-fast | 0.007866666666666666 | 0.4 | ||
| LVL-fast | 0.010783333333333334 | 0.4 | ||
| LVL-fast | 0.00725 | 0.7 | ||
| LVL-fast | 0.0112 | 0.6 | ||
| LVL-fast | 0.007233333333333333 | 0.4 | ||
| LVL-fast | 0.0069166666666666664 | 0.3 | ||
| LVL-fast | 0.01265 | 1.0 | ||
| LVL-fast | 0.00735 | 1.0 | ||
| LVL-fast | 0.012883333333333333 | 0.7 | ||
| LVL-fast | 0.008316666666666667 | 1.0 | ||
| LVL-fast | 0.011633333333333332 | 0.2 | ||
| LVL-fast | 0.0056500000000000005 | 0.9 | ||
| LVL-fast | 0.00705 | 0.1 | ||
| LVL-fast | 0.006666666666666667 | 0.8 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.012883333333333333 | 0.5 | ||
| LVL-fast | 0.009649999999999999 | 0.9 | ||
| LVL-fast | 0.009250000000000001 | 0.3 | ||
| LVL-fast | 0.010316666666666667 | 0.6 | ||
| LVL-fast | 0.008766666666666667 | 0.4 | ||
| LVL-fast | 0.012116666666666666 | 0.0 | ||
| LVL-fast | 0.009266666666666668 | 0.7 | ||
| LVL-fast | 0.010266666666666667 | 1.0 | ||
| LVL-fast | 0.010716666666666668 | 0.1 | ||
| LVL-fast | 0.005116666666666667 | 0.3 | ||
| LVL-fast | 0.0089 | 0.0 | ||
| LVL-fast | 0.013033333333333334 | 0.0 | ||
| LVL-fast | 0.00645 | 0.9 | ||
| LVL-fast | 0.012233333333333334 | 0.3 | ||
| LVL-fast | 0.005583333333333333 | 0.2 | ||
| LVL-fast | 0.00625 | 0.0 | ||
| LVL-fast | 0.00705 | 1.0 | ||
| LVL-fast | 0.00615 | 0.2 | ||
| LVL-fast | 0.007533333333333334 | 0.7 | ||
| LVL-fast | 0.012116666666666666 | 0.8 | ||
| LVL-fast | 0.005933333333333333 | 0.5 | ||
| LVL-fast | 0.011033333333333334 | 0.6 | ||
| LVL-fast | 0.00575 | 0.8 | ||
| LVL-fast | 0.007116666666666666 | 0.1 | ||
| LVL-fast | 0.009383333333333332 | 0.5 | ||
| LVL-fast | 0.010083333333333333 | 0.1 | ||
| LVL-fast | 0.005533333333333334 | 0.2 | ||
| LVL-fast | 0.009683333333333332 | 0.5 | ||
| LVL-fast | 0.011533333333333333 | 0.5 | ||
| LVL-fast | 0.01025 | 0.3 | ||
| LVL-fast | 0.0068 | 0.3 | ||
| LVL-fast | 0.008966666666666668 | 0.7 | ||
| LVL-fast | 0.0112 | 0.3 | ||
| LVL-fast | 0.007233333333333333 | 0.1 | ||
| LVL-fast | 0.010016666666666667 | 0.3 | ||
| LVL-fast | 0.013216666666666666 | 0.2 | ||
| LVL-fast | 0.007266666666666667 | 0.6 | ||
| LVL-fast | 0.011383333333333334 | 0.4 | ||
| LVL-fast | 0.007383333333333334 | 0.9 | ||
| LVL-fast | 0.011899999999999999 | 0.3 | ||
| LVL-fast | 0.011033333333333334 | 0.4 | ||
| LVL-fast | 0.0074333333333333335 | 0.3 | ||
| LVL-fast | 0.009866666666666666 | 0.8 | ||
| LVL-fast | 0.008 | 0.8 | ||
| LVL-fast | 0.007833333333333333 | 0.8 | ||
| LVL-fast | 0.01185 | 0.1 | ||
| LVL-fast | 0.011183333333333333 | 0.9 | ||
| LVL-fast | 0.010416666666666666 | 0.9 | ||
| LVL-fast | 0.010066666666666666 | 0.0 | ||
| LVL-fast | 0.011000000000000001 | 0.7 | ||
| LVL-fast | 0.012766666666666667 | 0.7 | ||
| LVL-fast | 0.009633333333333332 | 0.2 | ||
| LVL-fast | 0.009466666666666667 | 1.0 | ||
| LVL-fast | 0.005816666666666666 | 0.9 | ||
| LVL-fast | 0.00555 | 0.9 | ||
| LVL-fast | 0.008783333333333334 | 0.4 | ||
| LVL-fast | 0.01 | 0.9 | ||
| LVL-fast | 0.01085 | 0.8 | ||
| LVL-fast | 0.008783333333333334 | 1.0 | ||
| LVL-fast | 0.01155 | 0.9 | ||
| LVL-fast | 0.005566666666666667 | 0.1 | ||
| LVL-fast | 0.008166666666666666 | 0.3 | ||
| LVL-fast | 0.006516666666666667 | 0.6 | ||
| LVL-fast | 0.013166666666666667 | 0.8 | ||
| LVL-fast | 0.010816666666666667 | 0.5 | ||
| LVL-fast | 0.01245 | 0.9 | ||
| LVL-fast | 0.007716666666666667 | 0.4 | ||
| LVL-fast | 0.006516666666666667 | 0.3 | ||
| LVL-fast | 0.006383333333333334 | 0.8 | ||
| LVL-fast | 0.012816666666666667 | 0.0 | ||
| LVL-fast | 0.010766666666666667 | 0.2 | ||
| LVL-fast | 0.012166666666666666 | 0.4 | ||
| LVL-fast | 0.007233333333333333 | 0.4 | ||
| LVL-fast | 0.012016666666666667 | 0.2 | ||
| LVL-fast | 0.007416666666666667 | 0.2 | ||
| LVL-fast | 0.008016666666666667 | 0.1 | ||
| LVL-fast | 0.0057 | 0.1 | ||
| LVL-fast | 0.007083333333333333 | 0.1 | ||
| LVL-fast | 0.008916666666666666 | 0.8 | ||
| LVL-fast | 0.011016666666666668 | 1.0 | ||
| LVL-fast | 0.00835 | 0.7 | ||
| LVL-fast | 0.008633333333333333 | 0.1 | ||
| LVL-fast | 0.012233333333333334 | 0.9 | ||
| LVL-fast | 0.0101 | 1.0 | ||
| LVL-fast | 0.009166666666666667 | 0.0 | ||
| LVL-fast | 0.007216666666666666 | 1.0 | ||
| LVL-fast | 0.01055 | 0.4 | ||
| LVL-fast | 0.007983333333333334 | 0.3 | ||
| LVL-fast | 0.0076 | 0.8 | ||
| LVL-fast | 0.009183333333333333 | 0.3 | ||
| LVL-fast | 0.011533333333333333 | 0.3 | ||
| LVL-fast | 0.006966666666666666 | 0.5 | ||
| LVL-fast | 0.007750000000000001 | 0.6 | ||
| LVL-fast | 0.00875 | 0.7 | ||
| LVL-fast | 0.01175 | 0.5 | ||
| LVL-fast | 0.006233333333333333 | 1.0 | ||
| LVL-fast | 0.010966666666666668 | 1.0 | ||
| LVL-fast | 0.005383333333333334 | 0.5 | ||
| LVL-fast | 0.011649999999999999 | 0.2 | ||
| LVL-fast | 0.0132 | 0.8 | ||
| LVL-fast | 0.0064333333333333334 | 0.4 | ||
| LVL-fast | 0.005433333333333333 | 0.6 | ||
| LVL-fast | 0.007083333333333333 | 1.0 | ||
| LVL-fast | 0.012199999999999999 | 1.0 | ||
| LVL-fast | 0.0066500000000000005 | 0.6 | ||
| LVL-fast | 0.0131 | 0.6 | ||
| LVL-fast | 0.007816666666666666 | 0.9 | ||
| LVL-fast | 0.0112 | 0.2 | ||
| LVL-fast | 0.011116666666666667 | 0.1 | ||
| LVL-fast | 0.010633333333333333 | 0.4 | ||
| LVL-fast | 0.008216666666666667 | 0.5 | ||
| LVL-fast | 0.010766666666666667 | 0.3 | ||
| LVL-fast | 0.0059 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.1 | ||
| LVL-fast | 0.011716666666666665 | 0.1 | ||
| LVL-fast | 0.0066500000000000005 | 0.9 | ||
| LVL-fast | 0.005333333333333333 | 1.0 | ||
| LVL-fast | 0.005583333333333333 | 0.1 | ||
| LVL-fast | 0.006 | 0.8 | ||
| LVL-fast | 0.010066666666666666 | 0.7 | ||
| LVL-fast | 0.009583333333333333 | 0.5 | ||
| LVL-fast | 0.00555 | 0.7 | ||
| LVL-fast | 0.0101 | 0.5 | ||
| LVL-fast | 0.013266666666666668 | 0.9 | ||
| LVL-fast | 0.006516666666666667 | 0.9 | ||
| LVL-fast | 0.012583333333333334 | 0.8 | ||
| LVL-fast | 0.007733333333333333 | 0.0 | ||
| LVL-fast | 0.012666666666666666 | 0.2 | ||
| LVL-fast | 0.010833333333333334 | 0.9 | ||
| LVL-fast | 0.0059499999999999996 | 0.9 | ||
| LVL-fast | 0.008016666666666667 | 0.0 | ||
| LVL-fast | 0.0123 | 0.5 | ||
| LVL-fast | 0.010166666666666666 | 0.6 | ||
| LVL-fast | 0.010716666666666668 | 0.8 | ||
| LVL-fast | 0.012733333333333334 | 0.9 | ||
| LVL-fast | 0.010466666666666668 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 0.9 | ||
| LVL-fast | 0.00815 | 0.6 | ||
| LVL-fast | 0.009983333333333334 | 0.9 | ||
| LVL-fast | 0.012333333333333333 | 0.4 | ||
| LVL-fast | 0.012083333333333333 | 0.0 | ||
| LVL-fast | 0.006383333333333334 | 0.0 | ||
| LVL-fast | 0.012783333333333334 | 0.8 | ||
| LVL-fast | 0.011166666666666667 | 0.6 | ||
| LVL-fast | 0.006316666666666667 | 0.5 | ||
| LVL-fast | 0.013183333333333333 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 0.1 | ||
| LVL-fast | 0.007266666666666667 | 0.1 | ||
| LVL-fast | 0.011466666666666665 | 1.0 | ||
| LVL-fast | 0.0091 | 0.1 | ||
| LVL-fast | 0.009583333333333333 | 1.0 | ||
| LVL-fast | 0.012966666666666666 | 0.1 | ||
| LVL-fast | 0.005333333333333333 | 0.1 | ||
| LVL-fast | 0.011933333333333332 | 0.3 | ||
| LVL-fast | 0.005366666666666667 | 0.2 | ||
| LVL-fast | 0.006633333333333334 | 0.5 | ||
| LVL-fast | 0.0112 | 0.2 | ||
| LVL-fast | 0.011916666666666666 | 0.7 | ||
| LVL-fast | 0.005866666666666667 | 0.4 | ||
| LVL-fast | 0.011333333333333334 | 0.0 | ||
| LVL-fast | 0.009449999999999998 | 0.2 | ||
| LVL-fast | 0.009333333333333334 | 0.9 | ||
| LVL-fast | 0.010183333333333332 | 1.0 | ||
| LVL-fast | 0.013300000000000001 | 1.0 | ||
| LVL-fast | 0.013083333333333334 | 0.2 | ||
| LVL-fast | 0.0050999999999999995 | 0.8 | ||
| LVL-fast | 0.010233333333333334 | 0.8 | ||
| LVL-fast | 0.00885 | 0.0 | ||
| LVL-fast | 0.00525 | 1.0 | ||
| LVL-fast | 0.011366666666666667 | 0.2 | ||
| LVL-fast | 0.006083333333333333 | 0.3 | ||
| LVL-fast | 0.01055 | 0.1 | ||
| LVL-fast | 0.005966666666666666 | 0.3 | ||
| LVL-fast | 0.007533333333333334 | 0.9 | ||
| LVL-fast | 0.012716666666666666 | 0.1 | ||
| LVL-fast | 0.012750000000000001 | 0.8 | ||
| LVL-fast | 0.007933333333333332 | 0.2 | ||
| LVL-fast | 0.01265 | 1.0 | ||
| LVL-fast | 0.010116666666666666 | 0.4 | ||
| LVL-fast | 0.010216666666666667 | 0.7 | ||
| LVL-fast | 0.010183333333333332 | 0.4 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | 0.7777777777777778 | |
| LVL-fast | 0.021500000000000002 | 0.1 | ||
| LVL-fast | 0.01935 | 0.1 | ||
| LVL-fast | 0.016216666666666667 | 0.6 | ||
| LVL-fast | 0.019583333333333335 | 0.2 | ||
| LVL-fast | 0.01695 | 0.0 | ||
| LVL-fast | 0.016116666666666665 | 0.1 | ||
| LVL-fast | 0.020050000000000002 | 0.2 | ||
| LVL-fast | 0.021166666666666667 | 0.1 | ||
| LVL-fast | 0.01485 | 0.5 | ||
| LVL-fast | 0.018766666666666664 | 0.0 | ||
| LVL-fast | 0.016566666666666667 | 0.7 | ||
| LVL-fast | 0.017616666666666666 | 0.7 | ||
| LVL-fast | 0.018483333333333334 | 0.0 | ||
| LVL-fast | 0.018683333333333333 | 0.2 | ||
| LVL-fast | 0.0182 | 0.3 | ||
| LVL-fast | 0.016533333333333334 | 0.0 | ||
| LVL-fast | 0.013983333333333332 | 0.4 | ||
| LVL-fast | 0.016433333333333335 | 0.7 | ||
| LVL-fast | 0.016033333333333333 | 1.0 | ||
| LVL-fast | 0.0183 | 0.7 | ||
| LVL-fast | 0.014083333333333333 | 0.8 | ||
| LVL-fast | 0.01825 | 0.8 | ||
| LVL-fast | 0.015366666666666667 | 0.2 | ||
| LVL-fast | 0.020266666666666665 | 0.8 | ||
| LVL-fast | 0.018116666666666666 | 0.6 | ||
| LVL-fast | 0.018716666666666666 | 0.4 | ||
| LVL-fast | 0.018416666666666668 | 0.0 | ||
| LVL-fast | 0.017933333333333336 | 0.6 | ||
| LVL-fast | 0.01838333333333333 | 0.1 | ||
| LVL-fast | 0.019466666666666667 | 0.0 | ||
| LVL-fast | 0.019450000000000002 | 0.4 | ||
| LVL-fast | 0.019583333333333335 | 0.7 | ||
| LVL-fast | 0.020433333333333335 | 0.7 | ||
| LVL-fast | 0.016966666666666668 | 0.3 | ||
| LVL-fast | 0.01745 | 0.8 | ||
| LVL-fast | 0.0202 | 0.1 | ||
| LVL-fast | 0.016283333333333334 | 0.9 | ||
| LVL-fast | 0.01746666666666667 | 0.0 | ||
| LVL-fast | 0.015433333333333334 | 0.9 | ||
| LVL-fast | 0.01445 | 0.6 | ||
| LVL-fast | 0.017566666666666668 | 0.6 | ||
| LVL-fast | 0.01885 | 0.1 | 0.5555555555555556 | |
| LVL-fast | 0.016616666666666665 | 1.0 | ||
| LVL-fast | 0.0154 | 0.7 | ||
| LVL-fast | 0.0203 | 0.2 | ||
| LVL-fast | 0.018733333333333334 | 0.9 | ||
| LVL-fast | 0.014916666666666667 | 1.0 | ||
| LVL-fast | 0.020399999999999998 | 0.2 | ||
| LVL-fast | 0.020133333333333333 | 0.8 | ||
| LVL-fast | 0.015216666666666667 | 0.4 | ||
| LVL-fast | 0.019399999999999997 | 0.8 | ||
| LVL-fast | 0.014683333333333333 | 0.9 | ||
| LVL-fast | 0.02146666666666667 | 0.9 | ||
| LVL-fast | 0.015616666666666668 | 0.9 | ||
| LVL-fast | 0.018000000000000002 | 1.0 | ||
| LVL-fast | 0.015983333333333332 | 0.5 | ||
| LVL-fast | 0.019566666666666666 | 0.3 | ||
| LVL-fast | 0.01795 | 0.7 | ||
| LVL-fast | 0.0154 | 0.0 | ||
| LVL-fast | 0.014933333333333333 | 0.3 | ||
| LVL-fast | 0.01788333333333333 | 0.9 | ||
| LVL-fast | 0.01688333333333333 | 0.4 | ||
| LVL-fast | 0.018283333333333332 | 0.8 | ||
| LVL-fast | 0.015883333333333333 | 0.0 | ||
| LVL-fast | 0.013766666666666667 | 0.1 | ||
| LVL-fast | 0.016466666666666668 | 0.4 | ||
| LVL-fast | 0.013416666666666667 | 0.9 | ||
| LVL-fast | 0.017900000000000003 | 0.4 | ||
| LVL-fast | 0.016116666666666665 | 0.5 | ||
| LVL-fast | 0.018483333333333334 | 0.3 | ||
| LVL-fast | 0.014533333333333334 | 0.8 | ||
| LVL-fast | 0.01985 | 0.6 | ||
| LVL-fast | 0.014183333333333333 | 0.2 | ||
| LVL-fast | 0.017166666666666667 | 0.6 | ||
| LVL-fast | 0.01465 | 1.0 | ||
| LVL-fast | 0.020733333333333333 | 0.5 | ||
| LVL-fast | 0.01655 | 0.0 | ||
| LVL-fast | 0.01405 | 0.3 | ||
| LVL-fast | 0.0171 | 0.8 | ||
| LVL-fast | 0.02025 | 0.6 | ||
| LVL-fast | 0.0173 | 0.0 | ||
| LVL-fast | 0.016866666666666665 | 1.0 | ||
| LVL-fast | 0.020849999999999997 | 0.0 | 0.0 | |
| LVL-fast | 0.014133333333333333 | 0.8 | 0.0 | |
| LVL-fast | 0.0177 | 0.4 | ||
| LVL-fast | 0.02105 | 0.1 | ||
| LVL-fast | 0.01705 | 0.8 | ||
| LVL-fast | 0.01985 | 1.0 | 0.1111111111111111 | |
| LVL-fast | 0.020383333333333333 | 0.3 | ||
| LVL-fast | 0.018633333333333335 | 0.9 | ||
| LVL-fast | 0.016916666666666667 | 0.0 | ||
| LVL-fast | 0.0176 | 0.9 | 0.0 | |
| LVL-fast | 0.01983333333333333 | 0.4 | ||
| LVL-fast | 0.016016666666666665 | 0.2 | ||
| LVL-fast | 0.018233333333333334 | 0.1 | ||
| LVL-fast | 0.0172 | 0.6 | ||
| LVL-fast | 0.018400000000000003 | 0.6 | ||
| LVL-fast | 0.018433333333333336 | 0.5 | ||
| LVL-fast | 0.016933333333333335 | 0.7 | ||
| LVL-fast | 0.0183 | 0.7 | ||
| LVL-fast | 0.018183333333333333 | 0.9 | ||
| LVL-fast | 0.0216 | 0.1 | ||
| LVL-fast | 0.017433333333333335 | 0.3 | ||
| LVL-fast | 0.019116666666666667 | 0.9 | ||
| LVL-fast | 0.016433333333333335 | 0.4 | ||
| LVL-fast | 0.0176 | 1.0 | ||
| LVL-fast | 0.017316666666666664 | 0.5 | ||
| LVL-fast | 0.019883333333333333 | 1.0 | ||
| LVL-fast | 0.019966666666666667 | 0.0 | ||
| LVL-fast | 0.02128333333333333 | 0.0 | ||
| LVL-fast | 0.02115 | 0.5 | ||
| LVL-fast | 0.01668333333333333 | 0.1 | ||
| LVL-fast | 0.01951666666666667 | 1.0 | ||
| LVL-fast | 0.0175 | 0.9 | ||
| LVL-fast | 0.0141 | 0.1 | ||
| LVL-fast | 0.018799999999999997 | 0.7 | ||
| LVL-fast | 0.020133333333333333 | 0.9 | ||
| LVL-fast | 0.0143 | 0.0 | ||
| LVL-fast | 0.021016666666666666 | 0.8 | ||
| LVL-fast | 0.01985 | 0.8 | ||
| LVL-fast | 0.014383333333333333 | 0.1 | ||
| LVL-fast | 0.016183333333333334 | 0.8 | ||
| LVL-fast | 0.01765 | 0.6 | ||
| LVL-fast | 0.01745 | 0.0 | ||
| LVL-fast | 0.020766666666666666 | 0.3 | ||
| LVL-fast | 0.020533333333333334 | 0.8 | ||
| LVL-fast | 0.0201 | 0.0 | ||
| LVL-fast | 0.019533333333333333 | 0.1 | ||
| LVL-fast | 0.016483333333333332 | 0.7 | ||
| LVL-fast | 0.019816666666666666 | 0.7 | ||
| LVL-fast | 0.015000000000000001 | 0.5 | ||
| LVL-fast | 0.014383333333333333 | 0.8 | ||
| LVL-fast | 0.01415 | 0.8 | ||
| LVL-fast | 0.018433333333333336 | 0.9 | ||
| LVL-fast | 0.015416666666666667 | 0.3 | ||
| LVL-fast | 0.020766666666666666 | 0.1 | ||
| LVL-fast | 0.02041666666666667 | 0.2 | ||
| LVL-fast | 0.015616666666666668 | 0.9 | ||
| LVL-fast | 0.015133333333333334 | 0.3 | ||
| LVL-fast | 0.015783333333333333 | 1.0 | ||
| LVL-fast | 0.019299999999999998 | 0.8 | ||
| LVL-fast | 0.01485 | 0.5 | ||
| LVL-fast | 0.013966666666666665 | 0.2 | ||
| LVL-fast | 0.01891666666666667 | 0.9 | ||
| LVL-fast | 0.019266666666666665 | 0.0 | ||
| LVL-fast | 0.021533333333333335 | 1.0 | ||
| LVL-fast | 0.0208 | 0.3 | ||
| LVL-fast | 0.014516666666666667 | 0.9 | ||
| LVL-fast | 0.018516666666666667 | 0.3 | ||
| LVL-fast | 0.015483333333333333 | 0.3 | ||
| LVL-fast | 0.013816666666666666 | 0.1 | ||
| LVL-fast | 0.01865 | 0.1 | ||
| LVL-fast | 0.018533333333333336 | 0.9 | ||
| LVL-fast | 0.019366666666666664 | 0.8 | ||
| LVL-fast | 0.01345 | 0.6 | ||
| LVL-fast | 0.019533333333333333 | 0.6 | ||
| LVL-fast | 0.014483333333333332 | 0.1 | ||
| LVL-fast | 0.019450000000000002 | 0.6 | ||
| LVL-fast | 0.017516666666666666 | 0.4 | ||
| LVL-fast | 0.014133333333333333 | 0.5 | ||
| LVL-fast | 0.01345 | 0.3 | ||
| LVL-fast | 0.018799999999999997 | 0.6 | ||
| LVL-fast | 0.013566666666666666 | 0.7 | ||
| LVL-fast | 0.013566666666666666 | 0.2 | ||
| LVL-fast | 0.013766666666666667 | 0.1 | ||
| LVL-fast | 0.018349999999999998 | 0.2 | ||
| LVL-fast | 0.02 | 0.3 | ||
| LVL-fast | 0.017716666666666665 | 0.6 | ||
| LVL-fast | 0.014166666666666666 | 0.5 | ||
| LVL-fast | 0.013533333333333335 | 0.6 | ||
| LVL-fast | 0.018233333333333334 | 0.3 | ||
| LVL-fast | 0.015333333333333334 | 0.1 | ||
| LVL-fast | 0.01495 | 0.5 | ||
| LVL-fast | 0.015966666666666667 | 0.9 | ||
| LVL-fast | 0.014833333333333334 | 0.6 | ||
| LVL-fast | 0.02051666666666667 | 0.2 | ||
| LVL-fast | 0.01856666666666667 | 0.0 | ||
| LVL-fast | 0.0181 | 0.1 | ||
| LVL-fast | 0.020983333333333333 | 0.4 | ||
| LVL-fast | 0.016533333333333334 | 0.6 | ||
| LVL-fast | 0.016900000000000002 | 0.9 | ||
| LVL-fast | 0.018816666666666666 | 0.2 | ||
| LVL-fast | 0.0211 | 0.7 | ||
| LVL-fast | 0.0161 | 0.0 | ||
| LVL-fast | 0.016433333333333335 | 0.2 | ||
| LVL-fast | 0.018683333333333333 | 0.4 | ||
| LVL-fast | 0.01925 | 0.1 | ||
| LVL-fast | 0.020683333333333335 | 1.0 | ||
| LVL-fast | 0.018000000000000002 | 0.9 | ||
| LVL-fast | 0.016 | 0.0 | ||
| LVL-fast | 0.01688333333333333 | 0.2 | ||
| LVL-fast | 0.014416666666666666 | 0.4 | ||
| LVL-fast | 0.017933333333333336 | 0.9 | ||
| LVL-fast | 0.018899999999999997 | 0.8 | ||
| LVL-fast | 0.01688333333333333 | 0.6 | ||
| LVL-fast | 0.01465 | 0.1 | ||
| LVL-fast | 0.014816666666666667 | 0.2 | ||
| LVL-fast | 0.018333333333333333 | 0.3 | ||
| LVL-fast | 0.01935 | 0.9 | ||
| LVL-fast | 0.014116666666666666 | 0.7 | ||
| LVL-fast | 0.02146666666666667 | 0.2 | ||
| LVL-fast | 0.014033333333333333 | 0.1 | ||
| LVL-fast | 0.019183333333333333 | 0.3 | ||
| LVL-fast | 0.019383333333333332 | 0.1 | ||
| LVL-fast | 0.0195 | 0.8 | ||
| LVL-fast | 0.021116666666666666 | 0.9 | ||
| LVL-fast | 0.017833333333333333 | 0.2 | ||
| LVL-fast | 0.014516666666666667 | 0.3 | ||
| LVL-fast | 0.0167 | 1.0 | ||
| LVL-fast | 0.018283333333333332 | 0.1 | ||
| LVL-fast | 0.019366666666666664 | 1.0 | ||
| LVL-fast | 0.016533333333333334 | 0.8 | ||
| LVL-fast | 0.015516666666666668 | 0.6 | ||
| LVL-fast | 0.017866666666666666 | 0.7 | ||
| LVL-fast | 0.021033333333333334 | 0.2 | ||
| LVL-fast | 0.014133333333333333 | 0.7 | ||
| LVL-fast | 0.014633333333333333 | 0.9 | ||
| LVL-fast | 0.020916666666666663 | 0.6 | ||
| LVL-fast | 0.0187 | 0.7 | ||
| LVL-fast | 0.01991666666666667 | 0.9 | ||
| LVL-fast | 0.017983333333333334 | 0.3 | ||
| LVL-fast | 0.0164 | 0.7 | ||
| LVL-fast | 0.02015 | 0.1 | ||
| LVL-fast | 0.017316666666666664 | 1.0 | ||
| LVL-fast | 0.021483333333333333 | 0.7 | ||
| LVL-fast | 0.018866666666666664 | 0.8 | ||
| LVL-fast | 0.017316666666666664 | 0.4 | ||
| LVL-fast | 0.015616666666666668 | 0.2 | ||
| LVL-fast | 0.014383333333333333 | 0.8 | ||
| LVL-fast | 0.015550000000000001 | 0.3 | ||
| LVL-fast | 0.021249999999999998 | 0.1 | ||
| LVL-fast | 0.017366666666666666 | 0.8 | ||
| LVL-fast | 0.0138 | 0.1 | ||
| LVL-fast | 0.019183333333333333 | 0.1 | ||
| LVL-fast | 0.016283333333333334 | 0.6 | ||
| LVL-fast | 0.0161 | 0.1 | ||
| LVL-fast | 0.019133333333333332 | 1.0 | ||
| LVL-fast | 0.014433333333333333 | 1.0 | ||
| LVL-fast | 0.018933333333333333 | 0.3 | ||
| LVL-fast | 0.021566666666666668 | 0.1 | ||
| LVL-fast | 0.020550000000000002 | 0.5 | ||
| LVL-fast | 0.01385 | 1.0 | ||
| LVL-fast | 0.017316666666666664 | 1.0 | ||
| LVL-fast | 0.015250000000000001 | 0.1 | ||
| LVL-fast | 0.018400000000000003 | 1.0 | ||
| LVL-fast | 0.017316666666666664 | 0.3 | ||
| LVL-fast | 0.015733333333333332 | 0.8 | ||
| LVL-fast | 0.01575 | 0.8 | ||
| LVL-fast | 0.016383333333333333 | 0.1 | ||
| LVL-fast | 0.016633333333333333 | 0.3 | ||
| LVL-fast | 0.020766666666666666 | 0.1 | ||
| LVL-fast | 0.015300000000000001 | 1.0 | ||
| LVL-fast | 0.017849999999999998 | 0.6 | ||
| LVL-fast | 0.019399999999999997 | 0.3 | ||
| LVL-fast | 0.017333333333333333 | 0.9 | ||
| LVL-fast | 0.015066666666666667 | 0.4 | ||
| LVL-fast | 0.020483333333333336 | 0.2 | ||
| LVL-fast | 0.018366666666666667 | 0.1 | ||
| LVL-fast | 0.02165 | 0.6 | ||
| LVL-fast | 0.014533333333333334 | 0.1 | ||
| LVL-fast | 0.014766666666666668 | 0.2 | ||
| LVL-fast | 0.018799999999999997 | 0.4 | ||
| LVL-fast | 0.01983333333333333 | 1.0 | 0.6666666666666666 | |
| LVL-fast | 0.01655 | 0.8 | ||
| LVL-fast | 0.020533333333333334 | 0.1 | ||
| LVL-fast | 0.018933333333333333 | 0.6 | ||
| LVL-fast | 0.014083333333333333 | 0.5 | ||
| LVL-fast | 0.0214 | 0.8 | ||
| LVL-fast | 0.0182 | 0.0 | ||
| LVL-fast | 0.019616666666666668 | 0.6 | ||
| LVL-fast | 0.018583333333333334 | 0.4 | ||
| LVL-fast | 0.020683333333333335 | 0.8 | ||
| LVL-fast | 0.018866666666666664 | 0.8 | ||
| LVL-fast | 0.015166666666666667 | 0.2 | ||
| LVL-fast | 0.018216666666666666 | 0.8 | ||
| LVL-fast | 0.021266666666666666 | 0.8 | ||
| LVL-fast | 0.021266666666666666 | 0.5 | ||
| LVL-fast | 0.01875 | 0.0 | ||
| LVL-fast | 0.01895 | 0.7 | ||
| LVL-fast | 0.018966666666666666 | 0.3 | ||
| LVL-fast | 0.017566666666666668 | 0.7 | ||
| LVL-fast | 0.015866666666666664 | 0.3 | ||
| LVL-fast | 0.013483333333333335 | 0.7 | ||
| LVL-fast | 0.01933333333333333 | 0.4 | ||
| LVL-fast | 0.017033333333333334 | 0.8 | ||
| LVL-fast | 0.014166666666666666 | 1.0 | ||
| LVL-fast | 0.01985 | 0.9 | ||
| LVL-fast | 0.02015 | 0.2 | ||
| LVL-fast | 0.0143 | 0.8 | ||
| LVL-fast | 0.016233333333333332 | 0.0 | ||
| LVL-fast | 0.014466666666666666 | 0.7 | ||
| LVL-fast | 0.016016666666666665 | 0.3 | ||
| LVL-fast | 0.01635 | 0.7 | ||
| LVL-fast | 0.014633333333333333 | 0.4 | ||
| LVL-fast | 0.016666666666666666 | 0.5 | ||
| LVL-fast | 0.0159 | 0.8 | ||
| LVL-fast | 0.015316666666666668 | 0.0 | ||
| LVL-fast | 0.018716666666666666 | 0.4 | ||
| LVL-fast | 0.016749999999999998 | 0.1 | ||
| LVL-fast | 0.016900000000000002 | 0.6 | ||
| LVL-fast | 0.018033333333333335 | 0.4 | ||
| LVL-fast | 0.02155 | 0.9 | ||
| LVL-fast | 0.0175 | 1.0 | ||
| LVL-fast | 0.01678333333333333 | 0.5 | ||
| LVL-fast | 0.014216666666666666 | 0.5 | ||
| LVL-fast | 0.0143 | 1.0 | ||
| LVL-fast | 0.014366666666666666 | 0.6 | ||
| LVL-fast | 0.01738333333333333 | 0.6 | ||
| LVL-fast | 0.021500000000000002 | 0.5 | ||
| LVL-fast | 0.0165 | 0.3 | ||
| LVL-fast | 0.013766666666666667 | 0.7 | ||
| LVL-fast | 0.015366666666666667 | 0.9 | ||
| LVL-fast | 0.01605 | 0.5 | ||
| LVL-fast | 0.01615 | 0.6 | ||
| LVL-fast | 0.015083333333333334 | 0.1 | ||
| LVL-fast | 0.016900000000000002 | 0.0 | ||
| LVL-fast | 0.015516666666666668 | 0.5 | ||
| LVL-fast | 0.018616666666666667 | 1.0 | ||
| LVL-fast | 0.017433333333333335 | 0.2 | ||
| LVL-fast | 0.01838333333333333 | 0.9 | ||
| LVL-fast | 0.020316666666666667 | 0.8 | ||
| LVL-fast | 0.0182 | 1.0 | ||
| LVL-fast | 0.019133333333333332 | 0.4 | ||
| LVL-fast | 0.016816666666666664 | 1.0 | ||
| LVL-fast | 0.01951666666666667 | 0.7 | ||
| LVL-fast | 0.015366666666666667 | 0.1 | ||
| LVL-fast | 0.021233333333333333 | 0.1 | ||
| LVL-fast | 0.016766666666666666 | 0.4 | ||
| LVL-fast | 0.01583333333333333 | 0.1 | ||
| LVL-fast | 0.016266666666666665 | 0.6 | ||
| LVL-fast | 0.021366666666666666 | 0.3 | ||
| LVL-fast | 0.015183333333333333 | 1.0 | ||
| LVL-fast | 0.016933333333333335 | 1.0 | ||
| LVL-fast | 0.01425 | 0.2 | ||
| LVL-fast | 0.021216666666666665 | 0.7 | ||
| LVL-fast | 0.01796666666666667 | 0.5 | ||
| LVL-fast | 0.01855 | 0.7 | ||
| LVL-fast | 0.014933333333333333 | 0.0 | ||
| LVL-fast | 0.01575 | 0.4 | ||
| LVL-fast | 0.0195 | 0.0 | ||
| LVL-fast | 0.014483333333333332 | 0.6 | ||
| LVL-fast | 0.0166 | 0.0 | ||
| LVL-fast | 0.0203 | 0.7 | ||
| LVL-fast | 0.021083333333333332 | 0.6 | ||
| LVL-fast | 0.01575 | 0.7 | ||
| LVL-fast | 0.019216666666666667 | 0.1 | ||
| LVL-fast | 0.020216666666666668 | 0.9 | ||
| LVL-fast | 0.014 | 0.6 | ||
| LVL-fast | 0.016816666666666664 | 0.2 | ||
| LVL-fast | 0.0181 | 0.5 | ||
| LVL-fast | 0.019116666666666667 | 0.4 | ||
| LVL-fast | 0.013366666666666667 | 0.5 | ||
| LVL-fast | 0.019399999999999997 | 0.8 | ||
| LVL-fast | 0.01625 | 0.7 | ||
| LVL-fast | 0.019033333333333333 | 0.2 | ||
| LVL-fast | 0.018166666666666668 | 0.2 | ||
| LVL-fast | 0.01585 | 0.6 | ||
| LVL-fast | 0.021316666666666664 | 0.6 | ||
| LVL-fast | 0.016133333333333333 | 0.4 | ||
| LVL-fast | 0.0161 | 0.5 | ||
| LVL-fast | 0.017433333333333335 | 1.0 | ||
| LVL-fast | 0.01806666666666667 | 1.0 | ||
| LVL-fast | 0.01345 | 0.0 | ||
| LVL-fast | 0.018366666666666667 | 0.0 | ||
| LVL-fast | 0.016983333333333333 | 0.4 | ||
| LVL-fast | 0.015733333333333332 | 0.5 | ||
| LVL-fast | 0.015816666666666666 | 0.2 | ||
| LVL-fast | 0.016833333333333332 | 0.0 | ||
| LVL-fast | 0.021083333333333332 | 0.2 | ||
| LVL-fast | 0.014933333333333333 | 0.2 | ||
| LVL-fast | 0.01615 | 1.0 | ||
| LVL-fast | 0.015216666666666667 | 0.0 | ||
| LVL-fast | 0.015050000000000001 | 0.1 | ||
| LVL-fast | 0.01545 | 0.5 | ||
| LVL-fast | 0.019766666666666665 | 0.3 | ||
| LVL-fast | 0.020583333333333335 | 1.0 | ||
| LVL-fast | 0.020316666666666667 | 0.0 | ||
| LVL-fast | 0.02041666666666667 | 0.9 | ||
| LVL-fast | 0.0182 | 0.7 | ||
| LVL-fast | 0.015216666666666667 | 0.6 | ||
| LVL-fast | 0.013633333333333332 | 0.4 | ||
| LVL-fast | 0.018766666666666664 | 0.2 | ||
| LVL-fast | 0.01883333333333333 | 0.1 | ||
| LVL-fast | 0.01633333333333333 | 0.1 | ||
| LVL-fast | 0.019966666666666667 | 0.0 | ||
| LVL-fast | 0.015799999999999998 | 0.5 | ||
| LVL-fast | 0.013699999999999999 | 0.3 | ||
| LVL-fast | 0.01445 | 1.0 | ||
| LVL-fast | 0.020399999999999998 | 0.0 | ||
| LVL-fast | 0.015416666666666667 | 0.0 | ||
| LVL-fast | 0.018583333333333334 | 0.5 | ||
| LVL-fast | 0.020683333333333335 | 1.0 | ||
| LVL-fast | 0.018799999999999997 | 0.1 | ||
| LVL-fast | 0.0191 | 0.2 | ||
| LVL-fast | 0.016933333333333335 | 0.3 | ||
| LVL-fast | 0.019366666666666664 | 0.1 | ||
| LVL-fast | 0.01625 | 0.1 | ||
| LVL-fast | 0.02001666666666667 | 0.0 | ||
| LVL-fast | 0.014383333333333333 | 0.9 | ||
| LVL-fast | 0.021433333333333335 | 0.7 | ||
| LVL-fast | 0.014916666666666667 | 0.7 | ||
| LVL-fast | 0.019 | 0.9 | ||
| LVL-fast | 0.013683333333333332 | 0.7 | ||
| LVL-fast | 0.016066666666666667 | 0.7 | ||
| LVL-fast | 0.017666666666666667 | 0.2 | ||
| LVL-fast | 0.02035 | 1.0 | ||
| LVL-fast | 0.016066666666666667 | 0.8 | ||
| LVL-fast | 0.0154 | 0.5 | ||
| LVL-fast | 0.018899999999999997 | 1.0 | ||
| LVL-fast | 0.015916666666666666 | 0.0 | ||
| LVL-fast | 0.01545 | 0.2 | ||
| LVL-fast | 0.017416666666666667 | 0.8 | ||
| LVL-fast | 0.014083333333333333 | 0.0 | ||
| LVL-fast | 0.01738333333333333 | 0.1 | ||
| LVL-fast | 0.02088333333333333 | 0.3 | ||
| LVL-fast | 0.015633333333333332 | 0.7 | ||
| LVL-fast | 0.020399999999999998 | 1.0 | ||
| LVL-fast | 0.015016666666666668 | 1.0 | ||
| LVL-fast | 0.014199999999999999 | 1.0 | ||
| LVL-fast | 0.015283333333333335 | 0.6 | ||
| LVL-fast | 0.01765 | 0.8 | ||
| LVL-fast | 0.019083333333333334 | 0.6 | ||
| LVL-fast | 0.020383333333333333 | 1.0 | ||
| LVL-fast | 0.020383333333333333 | 0.0 | ||
| LVL-fast | 0.015383333333333334 | 1.0 | ||
| LVL-fast | 0.01608333333333333 | 0.3 | ||
| LVL-fast | 0.015016666666666668 | 0.3 | ||
| LVL-fast | 0.0187 | 0.4 | ||
| LVL-fast | 0.015983333333333332 | 0.2 | ||
| LVL-fast | 0.01738333333333333 | 0.6 | ||
| LVL-fast | 0.013416666666666667 | 0.8 | ||
| LVL-fast | 0.01875 | 0.0 | ||
| LVL-fast | 0.013633333333333332 | 0.0 | ||
| LVL-fast | 0.016433333333333335 | 1.0 | ||
| LVL-fast | 0.01935 | 0.8 | ||
| LVL-fast | 0.020916666666666663 | 0.3 | ||
| LVL-fast | 0.01625 | 0.4 | ||
| LVL-fast | 0.01645 | 0.1 | ||
| LVL-fast | 0.015533333333333335 | 0.9 | ||
| LVL-fast | 0.01425 | 0.3 | ||
| LVL-fast | 0.016616666666666665 | 0.7 | ||
| LVL-fast | 0.02033333333333333 | 0.4 | ||
| LVL-fast | 0.01595 | 0.3 | ||
| LVL-fast | 0.01495 | 0.4 | ||
| LVL-fast | 0.018516666666666667 | 0.5 | ||
| LVL-fast | 0.017983333333333334 | 0.9 | ||
| LVL-fast | 0.013966666666666665 | 0.2 | ||
| LVL-fast | 0.020833333333333332 | 1.0 | ||
| LVL-fast | 0.016816666666666664 | 0.9 | ||
| LVL-fast | 0.018266666666666667 | 0.6 | ||
| LVL-fast | 0.017766666666666667 | 1.0 | ||
| LVL-fast | 0.01625 | 0.6 | ||
| LVL-fast | 0.0151 | 0.0 | ||
| LVL-fast | 0.017900000000000003 | 0.9 | ||
| LVL-fast | 0.01625 | 0.7 | ||
| LVL-fast | 0.014966666666666666 | 0.1 | ||
| LVL-fast | 0.01465 | 0.4 | ||
| LVL-fast | 0.020866666666666665 | 0.2 | ||
| LVL-fast | 0.021249999999999998 | 0.3 | ||
| LVL-fast | 0.021233333333333333 | 0.0 | ||
| LVL-fast | 0.02138333333333333 | 0.2 | ||
| LVL-fast | 0.018533333333333336 | 0.4 | ||
| LVL-fast | 0.019666666666666666 | 0.9 | ||
| LVL-fast | 0.02041666666666667 | 1.0 | ||
| LVL-fast | 0.018600000000000002 | 0.1 | ||
| LVL-fast | 0.01746666666666667 | 0.5 | ||
| LVL-fast | 0.015083333333333334 | 0.8 | ||
| LVL-fast | 0.016766666666666666 | 0.3 | ||
| LVL-fast | 0.01778333333333333 | 0.7 | ||
| LVL-fast | 0.015716666666666667 | 0.4 | ||
| LVL-fast | 0.020766666666666666 | 0.6 | ||
| LVL-fast | 0.019299999999999998 | 0.3 | ||
| LVL-fast | 0.0151 | 1.0 | ||
| LVL-fast | 0.015016666666666668 | 0.7 | ||
| LVL-fast | 0.020166666666666666 | 0.7 | ||
| LVL-fast | 0.018316666666666665 | 0.4 | ||
| LVL-fast | 0.014283333333333334 | 0.5 | ||
| LVL-fast | 0.014083333333333333 | 0.4 | ||
| LVL-fast | 0.0167 | 0.2 | ||
| LVL-fast | 0.02041666666666667 | 0.3 | ||
| LVL-fast | 0.015333333333333334 | 0.9 | ||
| LVL-fast | 0.01933333333333333 | 0.9 | ||
| LVL-fast | 0.015550000000000001 | 0.9 | ||
| LVL-fast | 0.0207 | 0.4 | ||
| LVL-fast | 0.017583333333333333 | 0.5 | ||
| LVL-fast | 0.015616666666666668 | 0.9 | ||
| LVL-fast | 0.01485 | 0.6 | ||
| LVL-fast | 0.03701666666666667 | 1.0 | ||
| LVL-fast | 0.03791666666666667 | 0.3 | ||
| LVL-fast | 0.03463333333333333 | 0.6 | ||
| LVL-fast | 0.03693333333333334 | 0.8 | 0.5555555555555556 | |
| LVL-fast | 0.0382 | 0.3 | ||
| LVL-fast | 0.04253333333333333 | 1.0 | ||
| LVL-fast | 0.048716666666666665 | 0.8 | ||
| LVL-fast | 0.03038333333333333 | 0.9 | ||
| LVL-fast | 0.0377 | 0.9 | ||
| LVL-fast | 0.034850000000000006 | 0.1 | ||
| LVL-fast | 0.03015 | 0.4 | ||
| LVL-fast | 0.037200000000000004 | 0.9 | ||
| LVL-fast | 0.04025 | 0.0 | ||
| LVL-fast | 0.0492 | 0.1 | ||
| LVL-fast | 0.03055 | 0.4 | ||
| LVL-fast | 0.04401666666666667 | 0.2 | ||
| LVL-fast | 0.033850000000000005 | 0.1 | ||
| LVL-fast | 0.041716666666666666 | 0.9 | ||
| LVL-fast | 0.04858333333333333 | 0.8 | ||
| LVL-fast | 0.047516666666666665 | 0.5 | ||
| LVL-fast | 0.04703333333333334 | 0.8 | ||
| LVL-fast | 0.030500000000000003 | 0.4 | ||
| LVL-fast | 0.031000000000000003 | 0.2 | ||
| LVL-fast | 0.03048333333333333 | 1.0 | ||
| LVL-fast | 0.030600000000000002 | 0.6 | ||
| LVL-fast | 0.04135 | 0.0 | ||
| LVL-fast | 0.03738333333333333 | 0.0 | ||
| LVL-fast | 0.03353333333333333 | 0.2 | ||
| LVL-fast | 0.043250000000000004 | 0.3 | ||
| LVL-fast | 0.03348333333333333 | 0.3 | ||
| LVL-fast | 0.03686666666666667 | 0.9 | ||
| LVL-fast | 0.03745 | 0.6 | ||
| LVL-fast | 0.043699999999999996 | 0.7 | ||
| LVL-fast | 0.0382 | 0.9 | ||
| LVL-fast | 0.04926666666666667 | 0.5 | ||
| LVL-fast | 0.044083333333333335 | 0.4 | ||
| LVL-fast | 0.03716666666666667 | 0.9 | ||
| LVL-fast | 0.047900000000000005 | 0.0 | ||
| LVL-fast | 0.041749999999999995 | 1.0 | ||
| LVL-fast | 0.0349 | 0.9 | ||
| LVL-fast | 0.04455 | 0.3 | ||
| LVL-fast | 0.03443333333333333 | 0.5 | ||
| LVL-fast | 0.030466666666666666 | 0.4 | ||
| LVL-fast | 0.04525 | 0.4 | ||
| LVL-fast | 0.037200000000000004 | 0.1 | ||
| LVL-fast | 0.04468333333333333 | 0.8 | ||
| LVL-fast | 0.04788333333333334 | 0.5 | ||
| LVL-fast | 0.045316666666666665 | 0.7 | ||
| LVL-fast | 0.033850000000000005 | 0.2 | ||
| LVL-fast | 0.03515 | 0.8 | ||
| LVL-fast | 0.04176666666666666 | 0.7 | ||
| LVL-fast | 0.048183333333333335 | 0.6 | 0.4444444444444444 | |
| LVL-fast | 0.04758333333333333 | 1.0 | ||
| LVL-fast | 0.04808333333333333 | 0.4 | ||
| LVL-fast | 0.036699999999999997 | 0.2 | ||
| LVL-fast | 0.03973333333333333 | 0.7 | ||
| LVL-fast | 0.038516666666666664 | 0.8 | ||
| LVL-fast | 0.031100000000000003 | 0.7 | ||
| LVL-fast | 0.03333333333333333 | 0.5 | ||
| LVL-fast | 0.03713333333333334 | 0.7 | ||
| LVL-fast | 0.0326 | 0.7 | ||
| LVL-fast | 0.043250000000000004 | 0.8 | ||
| LVL-fast | 0.04785 | 0.6 | ||
| LVL-fast | 0.0439 | 0.4 | ||
| LVL-fast | 0.048933333333333336 | 0.8 | ||
| LVL-fast | 0.0326 | 0.7 | ||
| LVL-fast | 0.04425 | 0.0 | ||
| LVL-fast | 0.037316666666666665 | 0.0 | ||
| LVL-fast | 0.037766666666666664 | 1.0 | ||
| LVL-fast | 0.03766666666666666 | 0.6 | ||
| LVL-fast | 0.042333333333333334 | 0.7 | ||
| LVL-fast | 0.03821666666666667 | 0.6 | ||
| LVL-fast | 0.0422 | 0.4 | ||
| LVL-fast | 0.030183333333333333 | 0.1 | ||
| LVL-fast | 0.0366 | 0.3 | ||
| LVL-fast | 0.049216666666666666 | 0.4 | ||
| LVL-fast | 0.04713333333333333 | 0.8 | ||
| LVL-fast | 0.03115 | 0.8 | ||
| LVL-fast | 0.03573333333333333 | 0.2 | ||
| LVL-fast | 0.04158333333333333 | 0.2 | ||
| LVL-fast | 0.04306666666666667 | 0.9 | ||
| LVL-fast | 0.041699999999999994 | 0.3 | ||
| LVL-fast | 0.03106666666666667 | 0.9 | ||
| LVL-fast | 0.040933333333333335 | 0.8 | ||
| LVL-fast | 0.03903333333333334 | 0.5 | ||
| LVL-fast | 0.03666666666666667 | 0.5 | ||
| LVL-fast | 0.04231666666666667 | 1.0 | ||
| LVL-fast | 0.030816666666666666 | 0.9 | ||
| LVL-fast | 0.03038333333333333 | 0.8 | ||
| LVL-fast | 0.030633333333333335 | 0.7 | ||
| LVL-fast | 0.0359 | 0.4 | ||
| LVL-fast | 0.034800000000000005 | 0.5 | ||
| LVL-fast | 0.037116666666666666 | 0.1 | ||
| LVL-fast | 0.03965 | 0.6 | ||
| LVL-fast | 0.03228333333333334 | 0.7 | ||
| LVL-fast | 0.040466666666666665 | 0.3 | ||
| LVL-fast | 0.04293333333333334 | 0.7 | ||
| LVL-fast | 0.0431 | 0.4 | ||
| LVL-fast | 0.047266666666666665 | 1.0 | ||
| LVL-fast | 0.03966666666666666 | 0.7 | ||
| LVL-fast | 0.0442 | 0.1 | ||
| LVL-fast | 0.03871666666666666 | 0.6 | ||
| LVL-fast | 0.03615 | 0.4 | ||
| LVL-fast | 0.0394 | 0.0 | ||
| LVL-fast | 0.040433333333333335 | 0.4 | ||
| LVL-fast | 0.04996666666666667 | 1.0 | ||
| LVL-fast | 0.03211666666666667 | 1.0 | ||
| LVL-fast | 0.032516666666666666 | 0.8 | ||
| LVL-fast | 0.030266666666666667 | 0.3 | ||
| LVL-fast | 0.034 | 0.5 | ||
| LVL-fast | 0.0381 | 0.3 | ||
| LVL-fast | 0.035050000000000005 | 0.0 | ||
| LVL-fast | 0.04513333333333334 | 0.2 | ||
| LVL-fast | 0.03526666666666667 | 0.7 | ||
| LVL-fast | 0.048016666666666666 | 1.0 | ||
| LVL-fast | 0.041883333333333335 | 0.4 | ||
| LVL-fast | 0.03685 | 0.2 | ||
| LVL-fast | 0.04696666666666667 | 0.2 | ||
| LVL-fast | 0.040716666666666665 | 0.4 | ||
| LVL-fast | 0.03478333333333334 | 0.5 | ||
| LVL-fast | 0.047066666666666666 | 0.2 | ||
| LVL-fast | 0.044333333333333336 | 0.9 | ||
| LVL-fast | 0.043250000000000004 | 0.4 | ||
| LVL-fast | 0.03453333333333333 | 0.5 | ||
| LVL-fast | 0.046799999999999994 | 0.2 | ||
| LVL-fast | 0.04455 | 0.0 | ||
| LVL-fast | 0.03753333333333333 | 0.7 | ||
| LVL-fast | 0.041 | 0.9 | ||
| LVL-fast | 0.04475 | 0.8 | ||
| LVL-fast | 0.047933333333333335 | 0.7 | ||
| LVL-fast | 0.039766666666666665 | 0.9 | ||
| LVL-fast | 0.031116666666666667 | 0.6 | ||
| LVL-fast | 0.036316666666666664 | 0.7 | ||
| LVL-fast | 0.04601666666666667 | 0.6 | ||
| LVL-fast | 0.0394 | 0.6 | ||
| LVL-fast | 0.032516666666666666 | 0.3 | ||
| LVL-fast | 0.044283333333333334 | 0.9 | ||
| LVL-fast | 0.043133333333333336 | 0.1 | ||
| LVL-fast | 0.035050000000000005 | 0.4 | ||
| LVL-fast | 0.03085 | 0.5 | ||
| LVL-fast | 0.04378333333333333 | 0.3 | ||
| LVL-fast | 0.0387 | 0.6 | ||
| LVL-fast | 0.040016666666666666 | 1.0 | ||
| LVL-fast | 0.0317 | 0.4 | ||
| LVL-fast | 0.04745 | 0.5 | ||
| LVL-fast | 0.03615 | 0.3 | ||
| LVL-fast | 0.04011666666666667 | 0.9 | ||
| LVL-fast | 0.04036666666666667 | 1.0 | ||
| LVL-fast | 0.047266666666666665 | 0.0 | ||
| LVL-fast | 0.03698333333333333 | 0.3 | ||
| LVL-fast | 0.04426666666666667 | 0.2 | ||
| LVL-fast | 0.03376666666666666 | 0.5 | ||
| LVL-fast | 0.03555 | 0.0 | ||
| LVL-fast | 0.040883333333333334 | 0.5 | ||
| LVL-fast | 0.04111666666666667 | 0.5 | ||
| LVL-fast | 0.03805 | 0.5 | ||
| LVL-fast | 0.040466666666666665 | 0.8 | ||
| LVL-fast | 0.03056666666666667 | 0.7 | ||
| LVL-fast | 0.03141666666666667 | 0.6 | ||
| LVL-fast | 0.03161666666666667 | 0.1 | ||
| LVL-fast | 0.040433333333333335 | 0.5 | ||
| LVL-fast | 0.04111666666666667 | 0.4 | ||
| LVL-fast | 0.0473 | 0.1 | ||
| LVL-fast | 0.04646666666666666 | 0.0 | ||
| LVL-fast | 0.031466666666666664 | 0.7 | ||
| LVL-fast | 0.032516666666666666 | 0.4 | ||
| LVL-fast | 0.045033333333333335 | 0.3 | ||
| LVL-fast | 0.03835 | 0.3 | ||
| LVL-fast | 0.03615 | 0.8 | ||
| LVL-fast | 0.040216666666666664 | 0.8 | ||
| LVL-fast | 0.04736666666666667 | 0.6 | ||
| LVL-fast | 0.04658333333333333 | 0.9 | ||
| LVL-fast | 0.031016666666666668 | 0.9 | ||
| LVL-fast | 0.0407 | 1.0 | ||
| LVL-fast | 0.03701666666666667 | 0.4 | ||
| LVL-fast | 0.03515 | 0.1 | ||
| LVL-fast | 0.040216666666666664 | 0.4 | ||
| LVL-fast | 0.049633333333333335 | 0.9 | ||
| LVL-fast | 0.04496666666666667 | 0.0 | ||
| LVL-fast | 0.04126666666666667 | 0.5 | ||
| LVL-fast | 0.042583333333333334 | 0.0 | ||
| LVL-fast | 0.03573333333333333 | 0.4 | ||
| LVL-fast | 0.039 | 0.6 | ||
| LVL-fast | 0.0483 | 0.6 | ||
| LVL-fast | 0.03958333333333333 | 0.2 | ||
| LVL-fast | 0.034666666666666665 | 0.9 | ||
| LVL-fast | 0.037233333333333334 | 0.4 | 0.4444444444444444 | |
| LVL-fast | 0.03996666666666667 | 0.9 | 0.6666666666666666 | |
| LVL-fast | 0.04073333333333333 | 0.0 | ||
| LVL-fast | 0.0324 | 0.4 | 0.4444444444444444 | |
| LVL-fast | 0.04398333333333333 | 1.0 | 0.4444444444444444 | |
| LVL-fast | 0.03328333333333334 | 0.2 | ||
| LVL-fast | 0.035050000000000005 | 0.2 | ||
| LVL-fast | 0.04421666666666667 | 0.2 | 0.6666666666666666 | |
| LVL-fast | 0.03518333333333334 | 0.0 | ||
| LVL-fast | 0.031433333333333334 | 1.0 | ||
| LVL-fast | 0.047716666666666664 | 0.5 | ||
| LVL-fast | 0.03575 | 0.7 | ||
| LVL-fast | 0.04701666666666667 | 0.3 | ||
| LVL-fast | 0.04343333333333333 | 0.2 | ||
| LVL-fast | 0.04978333333333333 | 0.5 | ||
| LVL-fast | 0.0387 | 0.4 | ||
| LVL-fast | 0.04245 | 0.8 | ||
| LVL-fast | 0.04161666666666666 | 0.0 | ||
| LVL-fast | 0.03241666666666667 | 0.7 | ||
| LVL-fast | 0.03818333333333333 | 0.9 | ||
| LVL-fast | 0.03836666666666667 | 0.0 | ||
| LVL-fast | 0.0498 | 0.0 | ||
| LVL-fast | 0.0421 | 0.5 | ||
| LVL-fast | 0.030833333333333334 | 0.1 | ||
| LVL-fast | 0.04123333333333334 | 1.0 | ||
| LVL-fast | 0.03358333333333333 | 0.1 | ||
| LVL-fast | 0.04965 | 0.8 | ||
| LVL-fast | 0.04725 | 1.0 | ||
| LVL-fast | 0.047983333333333336 | 0.2 | ||
| LVL-fast | 0.03613333333333334 | 0.0 | ||
| LVL-fast | 0.04885 | 1.0 | ||
| LVL-fast | 0.04696666666666667 | 0.5 | ||
| LVL-fast | 0.03158333333333333 | 0.5 | ||
| LVL-fast | 0.03576666666666666 | 0.3 | ||
| LVL-fast | 0.03335 | 0.3 | ||
| LVL-fast | 0.04791666666666667 | 0.3 | ||
| LVL-fast | 0.044533333333333334 | 0.3 | ||
| LVL-fast | 0.03956666666666667 | 0.1 | ||
| LVL-fast | 0.03625 | 0.8 | ||
| LVL-fast | 0.031183333333333334 | 0.6 | ||
| LVL-fast | 0.04145 | 0.8 | ||
| LVL-fast | 0.033933333333333336 | 0.2 | ||
| LVL-fast | 0.04853333333333333 | 0.0 | ||
| LVL-fast | 0.03641666666666667 | 0.8 | ||
| LVL-fast | 0.0363 | 0.6 | ||
| LVL-fast | 0.0346 | 0.7 | ||
| LVL-fast | 0.0447 | 0.2 | ||
| LVL-fast | 0.034699999999999995 | 0.3 | ||
| LVL-fast | 0.038766666666666665 | 0.1 | ||
| LVL-fast | 0.03863333333333333 | 0.4 | ||
| LVL-fast | 0.04665 | 0.2 | ||
| LVL-fast | 0.04298333333333334 | 0.1 | ||
| LVL-fast | 0.03863333333333333 | 0.4 | ||
| LVL-fast | 0.035 | 0.2 | ||
| LVL-fast | 0.04406666666666667 | 1.0 | ||
| LVL-fast | 0.04845 | 0.2 | ||
| LVL-fast | 0.042466666666666666 | 0.1 | ||
| LVL-fast | 0.04733333333333333 | 0.9 | ||
| LVL-fast | 0.04513333333333334 | 0.5 | ||
| LVL-fast | 0.03595 | 0.2 | ||
| LVL-fast | 0.045566666666666665 | 0.9 | ||
| LVL-fast | 0.030083333333333333 | 1.0 | ||
| LVL-fast | 0.04705 | 0.7 | ||
| LVL-fast | 0.033466666666666665 | 1.0 | ||
| LVL-fast | 0.03373333333333333 | 0.0 | ||
| LVL-fast | 0.04215 | 0.9 | ||
| LVL-fast | 0.045316666666666665 | 0.0 | ||
| LVL-fast | 0.04558333333333333 | 0.2 | ||
| LVL-fast | 0.04725 | 0.9 | ||
| LVL-fast | 0.04373333333333333 | 0.0 | ||
| LVL-fast | 0.04105 | 0.1 | ||
| LVL-fast | 0.04198333333333334 | 0.3 | ||
| LVL-fast | 0.030100000000000002 | 0.7 | ||
| LVL-fast | 0.03476666666666666 | 0.6 | ||
| LVL-fast | 0.030766666666666668 | 0.2 | ||
| LVL-fast | 0.034666666666666665 | 0.1 | ||
| LVL-fast | 0.0363 | 0.8 | ||
| LVL-fast | 0.042749999999999996 | 0.0 | ||
| LVL-fast | 0.047183333333333334 | 0.6 | ||
| LVL-fast | 0.03671666666666666 | 0.0 | ||
| LVL-fast | 0.03596666666666667 | 0.6 | ||
| LVL-fast | 0.0486 | 0.9 | ||
| LVL-fast | 0.04806666666666667 | 0.4 | ||
| LVL-fast | 0.03745 | 0.9 | ||
| LVL-fast | 0.04036666666666667 | 0.4 | ||
| LVL-fast | 0.03858333333333333 | 0.6 | ||
| LVL-fast | 0.03311666666666667 | 0.9 | ||
| LVL-fast | 0.04378333333333333 | 0.6 | ||
| LVL-fast | 0.03873333333333333 | 0.5 | ||
| LVL-fast | 0.03885 | 0.1 | ||
| LVL-fast | 0.04248333333333333 | 0.3 | ||
| LVL-fast | 0.04635 | 0.5 | ||
| LVL-fast | 0.0323 | 0.9 | ||
| LVL-fast | 0.031466666666666664 | 0.7 | ||
| LVL-fast | 0.0428 | 1.0 | ||
| LVL-fast | 0.037233333333333334 | 0.3 | ||
| LVL-fast | 0.0382 | 1.0 | ||
| LVL-fast | 0.031133333333333336 | 0.7 | ||
| LVL-fast | 0.048233333333333336 | 0.8 | ||
| LVL-fast | 0.04321666666666667 | 0.6 | ||
| LVL-fast | 0.04878333333333333 | 0.9 | ||
| LVL-fast | 0.045483333333333334 | 1.0 | ||
| LVL-fast | 0.04105 | 0.9 | ||
| LVL-fast | 0.04058333333333333 | 1.0 | ||
| LVL-fast | 0.04756666666666667 | 0.0 | ||
| LVL-fast | 0.034133333333333335 | 0.2 | ||
| LVL-fast | 0.04675 | 0.0 | 0.3333333333333333 | |
| LVL-fast | 0.03735 | 0.7 | ||
| LVL-fast | 0.03568333333333333 | 0.0 | ||
| LVL-fast | 0.04848333333333333 | 0.3 | ||
| LVL-fast | 0.04858333333333333 | 0.3 | ||
| LVL-fast | 0.04906666666666667 | 0.0 | ||
| LVL-fast | 0.03535 | 0.5 | ||
| LVL-fast | 0.034699999999999995 | 1.0 | ||
| LVL-fast | 0.036566666666666664 | 0.4 | ||
| LVL-fast | 0.03771666666666666 | 0.9 | ||
| LVL-fast | 0.03833333333333333 | 0.0 | ||
| LVL-fast | 0.031599999999999996 | 0.0 | ||
| LVL-fast | 0.048633333333333334 | 0.2 | 0.4444444444444444 | |
| LVL-fast | 0.037233333333333334 | 0.9 | ||
| LVL-fast | 0.03648333333333333 | 0.5 | ||
| LVL-fast | 0.03195 | 0.9 | ||
| LVL-fast | 0.046683333333333334 | 0.8 | ||
| LVL-fast | 0.039483333333333336 | 0.3 | ||
| LVL-fast | 0.03038333333333333 | 0.6 | ||
| LVL-fast | 0.04248333333333333 | 0.2 | ||
| LVL-fast | 0.04271666666666667 | 0.5 | ||
| LVL-fast | 0.03913333333333333 | 0.4 | ||
| LVL-fast | 0.03845 | 0.2 | ||
| LVL-fast | 0.038283333333333336 | 0.2 | ||
| LVL-fast | 0.03191666666666667 | 0.8 | ||
| LVL-fast | 0.04348333333333333 | 0.1 | ||
| LVL-fast | 0.04455 | 0.0 | ||
| LVL-fast | 0.04318333333333334 | 0.2 | ||
| LVL-fast | 0.035083333333333334 | 0.5 | ||
| LVL-fast | 0.03048333333333333 | 0.8 | ||
| LVL-fast | 0.04376666666666666 | 1.0 | ||
| LVL-fast | 0.04463333333333333 | 0.2 | ||
| LVL-fast | 0.03175 | 0.0 | ||
| LVL-fast | 0.03791666666666667 | 0.9 | ||
| LVL-fast | 0.04191666666666667 | 0.1 | ||
| LVL-fast | 0.04265 | 0.6 | ||
| LVL-fast | 0.03133333333333333 | 0.3 | ||
| LVL-fast | 0.048100000000000004 | 0.0 | ||
| LVL-fast | 0.03663333333333333 | 0.4 | ||
| LVL-fast | 0.046599999999999996 | 0.9 | ||
| LVL-fast | 0.04068333333333333 | 0.6 | ||
| LVL-fast | 0.032433333333333335 | 0.6 | ||
| LVL-fast | 0.048516666666666666 | 0.8 | ||
| LVL-fast | 0.03376666666666666 | 0.7 | ||
| LVL-fast | 0.04773333333333333 | 0.1 | ||
| LVL-fast | 0.045316666666666665 | 0.1 | ||
| LVL-fast | 0.041466666666666666 | 0.8 | ||
| LVL-fast | 0.04253333333333333 | 0.2 | ||
| LVL-fast | 0.049216666666666666 | 0.8 | ||
| LVL-fast | 0.04833333333333333 | 0.5 | ||
| LVL-fast | 0.03578333333333333 | 0.6 | ||
| LVL-fast | 0.047683333333333335 | 1.0 | ||
| LVL-fast | 0.047983333333333336 | 0.2 | ||
| LVL-fast | 0.04384999999999999 | 0.8 | ||
| LVL-fast | 0.03526666666666667 | 0.1 | ||
| LVL-fast | 0.0382 | 0.5 | ||
| LVL-fast | 0.03323333333333333 | 1.0 | ||
| LVL-fast | 0.042050000000000004 | 0.6 | ||
| LVL-fast | 0.03836666666666667 | 0.2 | ||
| LVL-fast | 0.03983333333333334 | 0.3 | ||
| LVL-fast | 0.04005 | 0.6 | ||
| LVL-fast | 0.033883333333333335 | 0.9 | ||
| LVL-fast | 0.046766666666666665 | 0.5 | ||
| LVL-fast | 0.0381 | 0.3 | ||
| LVL-fast | 0.03601666666666667 | 0.7 | ||
| LVL-fast | 0.03891666666666667 | 0.3 | ||
| LVL-fast | 0.03871666666666666 | 0.2 | ||
| LVL-fast | 0.035333333333333335 | 0.5 | ||
| LVL-fast | 0.03996666666666667 | 0.2 | ||
| LVL-fast | 0.030033333333333335 | 0.9 | ||
| LVL-fast | 0.04471666666666666 | 0.0 | ||
| LVL-fast | 0.0415 | 0.1 | ||
| LVL-fast | 0.03391666666666667 | 0.4 | ||
| LVL-fast | 0.048433333333333335 | 0.7 | ||
| LVL-fast | 0.03821666666666667 | 0.8 | ||
| LVL-fast | 0.036000000000000004 | 0.0 | ||
| LVL-fast | 0.03686666666666667 | 0.0 | ||
| LVL-fast | 0.04731666666666667 | 0.1 | ||
| LVL-fast | 0.039 | 0.7 | ||
| LVL-fast | 0.04203333333333333 | 0.3 | ||
| LVL-fast | 0.038266666666666664 | 0.0 | ||
| LVL-fast | 0.04738333333333333 | 0.1 | ||
| LVL-fast | 0.04906666666666667 | 0.7 | ||
| LVL-fast | 0.0352 | 1.0 | ||
| LVL-fast | 0.04611666666666667 | 0.0 | ||
| LVL-fast | 0.043616666666666665 | 0.0 | ||
| LVL-fast | 0.03658333333333333 | 0.0 | ||
| LVL-fast | 0.04643333333333333 | 0.1 | ||
| LVL-fast | 0.031316666666666666 | 0.7 | ||
| LVL-fast | time_elapse | intensity | tired_level | |
| LVL-fast | 0.01105 | 0.9 | ||
| LVL-fast | 0.0051333333333333335 | 0.6 | ||
| LVL-fast | 0.00695 | 0.6 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.005233333333333334 | 0.6 | ||
| LVL-fast | 0.013316666666666668 | 0.9 | ||
| LVL-fast | 0.010516666666666667 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 1.0 | ||
| LVL-fast | 0.011116666666666667 | 0.6 | ||
| LVL-fast | 0.0096 | 1.0 | ||
| LVL-fast | 0.006683333333333334 | 0.8 | ||
| LVL-fast | 0.007716666666666667 | 1.0 | ||
| LVL-fast | 0.010783333333333334 | 0.9 | ||
| LVL-fast | 0.009200000000000002 | 0.6 | ||
| LVL-fast | 0.005616666666666667 | 0.7 | ||
| LVL-fast | 0.012033333333333333 | 0.9 | ||
| LVL-fast | 0.005 | 0.7 | ||
| LVL-fast | 0.0089 | 0.6 | ||
| LVL-fast | 0.006783333333333333 | 0.9 | ||
| LVL-fast | 0.005666666666666667 | 1.0 | ||
| LVL-fast | 0.013166666666666667 | 0.8 | ||
| LVL-fast | 0.011633333333333332 | 0.9 | ||
| LVL-fast | 0.010883333333333333 | 0.7 | ||
| LVL-fast | 0.011583333333333333 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.7 | ||
| LVL-fast | 0.0066500000000000005 | 0.8 | ||
| LVL-fast | 0.0057 | 0.8 | ||
| LVL-fast | 0.007683333333333334 | 0.7 | ||
| LVL-fast | 0.00885 | 0.9 | ||
| LVL-fast | 0.011516666666666666 | 1.0 | ||
| LVL-fast | 0.008833333333333334 | 0.6 | ||
| LVL-fast | 0.012383333333333333 | 1.0 | ||
| LVL-fast | 0.0076500000000000005 | 0.8 | ||
| LVL-fast | 0.008066666666666666 | 1.0 | ||
| LVL-fast | 0.012516666666666667 | 0.9 | ||
| LVL-fast | 0.008133333333333333 | 0.6 | ||
| LVL-fast | 0.0052 | 0.9 | ||
| LVL-fast | 0.01235 | 0.8 | ||
| LVL-fast | 0.009366666666666667 | 0.9 | ||
| LVL-fast | 0.009966666666666667 | 0.6 | ||
| LVL-fast | 0.010716666666666668 | 1.0 | ||
| LVL-fast | 0.010133333333333333 | 0.9 | ||
| LVL-fast | 0.0063 | 0.8 | ||
| LVL-fast | 0.00535 | 0.9 | ||
| LVL-fast | 0.008616666666666667 | 0.8 | ||
| LVL-fast | 0.007633333333333334 | 0.7 | ||
| LVL-fast | 0.01315 | 0.7 | ||
| LVL-fast | 0.005166666666666667 | 0.8 | ||
| LVL-fast | 0.005116666666666667 | 0.8 | ||
| LVL-fast | 0.009083333333333334 | 0.7 | ||
| LVL-fast | 0.011466666666666665 | 0.8 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.009366666666666667 | 0.6 | ||
| LVL-fast | 0.009449999999999998 | 0.8 | ||
| LVL-fast | 0.011183333333333333 | 0.8 | ||
| LVL-fast | 0.007733333333333333 | 0.7 | ||
| LVL-fast | 0.009733333333333333 | 0.9 | ||
| LVL-fast | 0.0071333333333333335 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.6 | ||
| LVL-fast | 0.005533333333333334 | 1.0 | ||
| LVL-fast | 0.009616666666666666 | 0.7 | ||
| LVL-fast | 0.0076 | 0.7 | ||
| LVL-fast | 0.008266666666666667 | 0.9 | ||
| LVL-fast | 0.0059499999999999996 | 0.7 | ||
| LVL-fast | 0.012266666666666667 | 0.9 | ||
| LVL-fast | 0.007216666666666666 | 1.0 | ||
| LVL-fast | 0.008883333333333333 | 0.6 | ||
| LVL-fast | 0.008700000000000001 | 0.9 | ||
| LVL-fast | 0.0072 | 0.7 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.005333333333333333 | 1.0 | ||
| LVL-fast | 0.0105 | 0.6 | ||
| LVL-fast | 0.009516666666666666 | 0.7 | ||
| LVL-fast | 0.006166666666666667 | 0.6 | ||
| LVL-fast | 0.009866666666666666 | 0.8 | ||
| LVL-fast | 0.007733333333333333 | 1.0 | ||
| LVL-fast | 0.00955 | 1.0 | ||
| LVL-fast | 0.008516666666666667 | 0.6 | ||
| LVL-fast | 0.0116 | 0.8 | ||
| LVL-fast | 0.011533333333333333 | 0.9 | ||
| LVL-fast | 0.008183333333333332 | 0.6 | ||
| LVL-fast | 0.012766666666666667 | 0.7 | ||
| LVL-fast | 0.007083333333333333 | 0.7 | ||
| LVL-fast | 0.011983333333333334 | 0.6 | ||
| LVL-fast | 0.006066666666666666 | 0.6 | ||
| LVL-fast | 0.007233333333333333 | 0.9 | ||
| LVL-fast | 0.008366666666666666 | 1.0 | ||
| LVL-fast | 0.012016666666666667 | 0.6 | ||
| LVL-fast | 0.00805 | 1.0 | ||
| LVL-fast | 0.008216666666666667 | 0.7 | ||
| LVL-fast | 0.007566666666666667 | 0.7 | ||
| LVL-fast | 0.01 | 0.9 | ||
| LVL-fast | 0.010416666666666666 | 1.0 | ||
| LVL-fast | 0.006516666666666667 | 1.0 | ||
| LVL-fast | 0.00695 | 0.8 | 0.5555555555555556 | |
| LVL-fast | 0.011766666666666667 | 0.8 | 0.5555555555555556 | |
| LVL-fast | 0.007266666666666667 | 0.8 | ||
| LVL-fast | 0.0064 | 0.6 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.005016666666666667 | 0.8 | ||
| LVL-fast | 0.005216666666666666 | 0.9 | ||
| LVL-fast | 0.007216666666666666 | 0.7 | ||
| LVL-fast | 0.010116666666666666 | 1.0 | ||
| LVL-fast | 0.008916666666666666 | 0.9 | ||
| LVL-fast | 0.009266666666666668 | 1.0 | ||
| LVL-fast | 0.006333333333333333 | 0.7 | ||
| LVL-fast | 0.012166666666666666 | 1.0 | ||
| LVL-fast | 0.009783333333333333 | 0.9 | ||
| LVL-fast | 0.008216666666666667 | 0.8 | ||
| LVL-fast | 0.009433333333333332 | 0.7 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.0062 | 1.0 | ||
| LVL-fast | 0.007733333333333333 | 0.7 | ||
| LVL-fast | 0.010433333333333333 | 0.6 | ||
| LVL-fast | 0.008916666666666666 | 0.7 | ||
| LVL-fast | 0.010366666666666666 | 0.7 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.013116666666666667 | 0.8 | ||
| LVL-fast | 0.009333333333333334 | 0.8 | ||
| LVL-fast | 0.0131 | 1.0 | ||
| LVL-fast | 0.009083333333333334 | 0.7 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.00835 | 0.8 | ||
| LVL-fast | 0.01045 | 0.6 | ||
| LVL-fast | 0.011116666666666667 | 0.7 | ||
| LVL-fast | 0.012883333333333333 | 0.9 | ||
| LVL-fast | 0.006883333333333333 | 0.6 | ||
| LVL-fast | 0.01045 | 0.9 | ||
| LVL-fast | 0.005233333333333334 | 0.9 | ||
| LVL-fast | 0.011899999999999999 | 0.9 | ||
| LVL-fast | 0.008583333333333333 | 1.0 | ||
| LVL-fast | 0.011583333333333333 | 0.6 | ||
| LVL-fast | 0.006733333333333333 | 0.9 | ||
| LVL-fast | 0.005983333333333333 | 1.0 | ||
| LVL-fast | 0.008583333333333333 | 0.6 | ||
| LVL-fast | 0.00555 | 0.9 | ||
| LVL-fast | 0.005 | 1.0 | ||
| LVL-fast | 0.005983333333333333 | 0.7 | ||
| LVL-fast | 0.013116666666666667 | 0.9 | ||
| LVL-fast | 0.0057666666666666665 | 1.0 | ||
| LVL-fast | 0.010733333333333334 | 0.8 | ||
| LVL-fast | 0.0096 | 0.9 | ||
| LVL-fast | 0.010033333333333333 | 0.9 | ||
| LVL-fast | 0.006116666666666667 | 0.7 | ||
| LVL-fast | 0.012466666666666666 | 0.8 | ||
| LVL-fast | 0.009466666666666667 | 1.0 | ||
| LVL-fast | 0.011250000000000001 | 1.0 | ||
| LVL-fast | 0.010416666666666666 | 0.7 | ||
| LVL-fast | 0.0083 | 1.0 | ||
| LVL-fast | 0.0078000000000000005 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 0.7 | ||
| LVL-fast | 0.009883333333333333 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.0089 | 1.0 | ||
| LVL-fast | 0.013316666666666668 | 0.8 | ||
| LVL-fast | 0.012966666666666666 | 1.0 | ||
| LVL-fast | 0.01155 | 0.8 | ||
| LVL-fast | 0.009233333333333335 | 0.8 | ||
| LVL-fast | 0.011933333333333332 | 0.6 | ||
| LVL-fast | 0.006466666666666667 | 0.6 | ||
| LVL-fast | 0.008533333333333334 | 0.9 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.010533333333333334 | 0.8 | ||
| LVL-fast | 0.011116666666666667 | 1.0 | ||
| LVL-fast | 0.013016666666666668 | 0.6 | ||
| LVL-fast | 0.0053 | 0.9 | ||
| LVL-fast | 0.008183333333333332 | 0.7 | ||
| LVL-fast | 0.00955 | 0.8 | ||
| LVL-fast | 0.005866666666666667 | 0.9 | ||
| LVL-fast | 0.005166666666666667 | 0.6 | ||
| LVL-fast | 0.013216666666666666 | 0.9 | ||
| LVL-fast | 0.011899999999999999 | 0.8 | ||
| LVL-fast | 0.012 | 0.9 | ||
| LVL-fast | 0.011483333333333333 | 0.7 | ||
| LVL-fast | 0.005416666666666667 | 0.8 | ||
| LVL-fast | 0.007333333333333333 | 0.9 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.008933333333333333 | 0.9 | ||
| LVL-fast | 0.0070999999999999995 | 0.8 | ||
| LVL-fast | 0.012633333333333333 | 0.7 | ||
| LVL-fast | 0.011016666666666668 | 0.9 | ||
| LVL-fast | 0.005183333333333333 | 1.0 | ||
| LVL-fast | 0.01065 | 0.6 | ||
| LVL-fast | 0.007166666666666667 | 0.6 | ||
| LVL-fast | 0.00635 | 0.7 | ||
| LVL-fast | 0.006383333333333334 | 1.0 | ||
| LVL-fast | 0.010466666666666668 | 0.6 | ||
| LVL-fast | 0.011033333333333334 | 0.8 | ||
| LVL-fast | 0.008116666666666666 | 0.6 | ||
| LVL-fast | 0.005233333333333334 | 0.8 | ||
| LVL-fast | 0.011266666666666668 | 0.8 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.006333333333333333 | 1.0 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.007750000000000001 | 0.8 | ||
| LVL-fast | 0.00875 | 0.7 | ||
| LVL-fast | 0.007166666666666667 | 0.6 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.010566666666666667 | 0.7 | ||
| LVL-fast | 0.010216666666666667 | 0.8 | ||
| LVL-fast | 0.008516666666666667 | 0.6 | ||
| LVL-fast | 0.010733333333333334 | 1.0 | ||
| LVL-fast | 0.009466666666666667 | 0.8 | ||
| LVL-fast | 0.009916666666666666 | 0.9 | ||
| LVL-fast | 0.006466666666666667 | 0.7 | ||
| LVL-fast | 0.00935 | 0.6 | ||
| LVL-fast | 0.0057333333333333325 | 0.8 | ||
| LVL-fast | 0.00795 | 0.6 | ||
| LVL-fast | 0.0086 | 0.9 | ||
| LVL-fast | 0.0052 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.01315 | 0.9 | ||
| LVL-fast | 0.00915 | 1.0 | ||
| LVL-fast | 0.005333333333333333 | 0.9 | ||
| LVL-fast | 0.00805 | 0.7 | ||
| LVL-fast | 0.0076500000000000005 | 0.7 | ||
| LVL-fast | 0.0123 | 0.7 | ||
| LVL-fast | 0.005083333333333333 | 0.8 | ||
| LVL-fast | 0.0073 | 0.6 | ||
| LVL-fast | 0.013133333333333334 | 0.8 | ||
| LVL-fast | 0.0066500000000000005 | 0.8 | ||
| LVL-fast | 0.006683333333333334 | 0.8 | ||
| LVL-fast | 0.008683333333333333 | 0.9 | ||
| LVL-fast | 0.009016666666666668 | 0.7 | ||
| LVL-fast | 0.00615 | 0.9 | ||
| LVL-fast | 0.011949999999999999 | 0.6 | ||
| LVL-fast | 0.010983333333333335 | 1.0 | ||
| LVL-fast | 0.006466666666666667 | 0.9 | ||
| LVL-fast | 0.0129 | 0.8 | ||
| LVL-fast | 0.007866666666666666 | 0.7 | ||
| LVL-fast | 0.0083 | 1.0 | ||
| LVL-fast | 0.011083333333333334 | 0.9 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.012716666666666666 | 0.9 | ||
| LVL-fast | 0.01295 | 1.0 | ||
| LVL-fast | 0.012133333333333333 | 0.9 | ||
| LVL-fast | 0.008533333333333334 | 0.6 | ||
| LVL-fast | 0.008283333333333334 | 1.0 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.00785 | 0.6 | ||
| LVL-fast | 0.006566666666666667 | 1.0 | ||
| LVL-fast | 0.007500000000000001 | 0.6 | ||
| LVL-fast | 0.012833333333333334 | 0.7 | ||
| LVL-fast | 0.0123 | 0.8 | ||
| LVL-fast | 0.0114 | 1.0 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.01015 | 0.8 | ||
| LVL-fast | 0.005016666666666667 | 1.0 | ||
| LVL-fast | 0.011633333333333332 | 0.6 | ||
| LVL-fast | 0.0085 | 0.6 | ||
| LVL-fast | 0.007566666666666667 | 0.9 | ||
| LVL-fast | 0.0050999999999999995 | 0.8 | ||
| LVL-fast | 0.0101 | 1.0 | ||
| LVL-fast | 0.011633333333333332 | 0.9 | ||
| LVL-fast | 0.013133333333333334 | 1.0 | ||
| LVL-fast | 0.0062 | 0.7 | ||
| LVL-fast | 0.011433333333333334 | 1.0 | ||
| LVL-fast | 0.010083333333333333 | 0.8 | ||
| LVL-fast | 0.00695 | 0.8 | ||
| LVL-fast | 0.012 | 0.7 | ||
| LVL-fast | 0.00555 | 0.9 | ||
| LVL-fast | 0.012166666666666666 | 0.9 | ||
| LVL-fast | 0.010533333333333334 | 1.0 | ||
| LVL-fast | 0.010816666666666667 | 0.8 | ||
| LVL-fast | 0.0060999999999999995 | 0.6 | ||
| LVL-fast | 0.0128 | 1.0 | ||
| LVL-fast | 0.006516666666666667 | 1.0 | ||
| LVL-fast | 0.011233333333333335 | 1.0 | ||
| LVL-fast | 0.009866666666666666 | 0.9 | ||
| LVL-fast | 0.0062833333333333335 | 0.6 | ||
| LVL-fast | 0.007500000000000001 | 0.7 | ||
| LVL-fast | 0.00645 | 1.0 | ||
| LVL-fast | 0.010283333333333334 | 0.6 | ||
| LVL-fast | 0.00855 | 0.9 | ||
| LVL-fast | 0.0055000000000000005 | 1.0 | ||
| LVL-fast | 0.009566666666666666 | 0.8 | ||
| LVL-fast | 0.01065 | 1.0 | ||
| LVL-fast | 0.008316666666666667 | 0.9 | ||
| LVL-fast | 0.005083333333333333 | 0.8 | ||
| LVL-fast | 0.007933333333333332 | 0.7 | ||
| LVL-fast | 0.012783333333333334 | 0.7 | ||
| LVL-fast | 0.007783333333333334 | 1.0 | ||
| LVL-fast | 0.006583333333333333 | 0.6 | ||
| LVL-fast | 0.007083333333333333 | 0.7 | ||
| LVL-fast | 0.009016666666666668 | 0.9 | ||
| LVL-fast | 0.007383333333333334 | 1.0 | ||
| LVL-fast | 0.0085 | 0.8 | ||
| LVL-fast | 0.01175 | 0.9 | ||
| LVL-fast | 0.0062 | 0.9 | ||
| LVL-fast | 0.012216666666666666 | 0.9 | ||
| LVL-fast | 0.012266666666666667 | 0.7 | ||
| LVL-fast | 0.009966666666666667 | 1.0 | ||
| LVL-fast | 0.005849999999999999 | 0.6 | ||
| LVL-fast | 0.007733333333333333 | 0.9 | ||
| LVL-fast | 0.010383333333333333 | 0.8 | ||
| LVL-fast | 0.008533333333333334 | 0.6 | ||
| LVL-fast | 0.006016666666666667 | 0.9 | ||
| LVL-fast | 0.00695 | 1.0 | ||
| LVL-fast | 0.011466666666666665 | 0.9 | ||
| LVL-fast | 0.010716666666666668 | 0.9 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | ||
| LVL-fast | 0.007633333333333334 | 0.9 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.005033333333333333 | 0.9 | ||
| LVL-fast | 0.007666666666666667 | 0.6 | ||
| LVL-fast | 0.00505 | 0.9 | ||
| LVL-fast | 0.008016666666666667 | 1.0 | ||
| LVL-fast | 0.006666666666666667 | 1.0 | ||
| LVL-fast | 0.007666666666666667 | 0.7 | ||
| LVL-fast | 0.005316666666666667 | 0.9 | ||
| LVL-fast | 0.009899999999999999 | 0.7 | ||
| LVL-fast | 0.01095 | 0.9 | ||
| LVL-fast | 0.0081 | 0.9 | ||
| LVL-fast | 0.006233333333333333 | 0.7 | ||
| LVL-fast | 0.012383333333333333 | 1.0 | ||
| LVL-fast | 0.0101 | 0.6 | ||
| LVL-fast | 0.011866666666666666 | 0.8 | ||
| LVL-fast | 0.00815 | 0.8 | ||
| LVL-fast | 0.01035 | 0.8 | ||
| LVL-fast | 0.011649999999999999 | 0.7 | ||
| LVL-fast | 0.009416666666666665 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.7 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.0056500000000000005 | 1.0 | ||
| LVL-fast | 0.0063 | 0.9 | ||
| LVL-fast | 0.0126 | 0.6 | ||
| LVL-fast | 0.007633333333333334 | 0.8 | ||
| LVL-fast | 0.008 | 0.6 | ||
| LVL-fast | 0.005533333333333334 | 0.7 | ||
| LVL-fast | 0.01095 | 1.0 | ||
| LVL-fast | 0.0072833333333333335 | 0.8 | ||
| LVL-fast | 0.0115 | 0.7 | ||
| LVL-fast | 0.011899999999999999 | 0.8 | ||
| LVL-fast | 0.00915 | 1.0 | ||
| LVL-fast | 0.009616666666666666 | 0.9 | ||
| LVL-fast | 0.0115 | 0.7 | ||
| LVL-fast | 0.005616666666666667 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.9 | ||
| LVL-fast | 0.0058 | 0.8 | ||
| LVL-fast | 0.00645 | 0.6 | ||
| LVL-fast | 0.010466666666666668 | 0.8 | ||
| LVL-fast | 0.0077 | 0.9 | ||
| LVL-fast | 0.00755 | 0.8 | ||
| LVL-fast | 0.005266666666666667 | 1.0 | ||
| LVL-fast | 0.009516666666666666 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.9 | ||
| LVL-fast | 0.009566666666666666 | 1.0 | ||
| LVL-fast | 0.011250000000000001 | 0.6 | ||
| LVL-fast | 0.005366666666666667 | 0.9 | ||
| LVL-fast | 0.006783333333333333 | 0.9 | ||
| LVL-fast | 0.0132 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.9 | ||
| LVL-fast | 0.007766666666666667 | 1.0 | ||
| LVL-fast | 0.009916666666666666 | 1.0 | ||
| LVL-fast | 0.010166666666666666 | 0.8 | ||
| LVL-fast | 0.005033333333333333 | 0.9 | ||
| LVL-fast | 0.006066666666666666 | 0.6 | ||
| LVL-fast | 0.010116666666666666 | 0.7 | ||
| LVL-fast | 0.0086 | 0.7 | ||
| LVL-fast | 0.01265 | 0.6 | ||
| LVL-fast | 0.01225 | 0.7 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | ||
| LVL-fast | 0.0062 | 0.6 | ||
| LVL-fast | 0.010533333333333334 | 0.7 | ||
| LVL-fast | 0.007416666666666667 | 0.7 | ||
| LVL-fast | 0.011416666666666667 | 1.0 | ||
| LVL-fast | 0.009033333333333334 | 0.8 | ||
| LVL-fast | 0.00905 | 1.0 | ||
| LVL-fast | 0.0052 | 0.9 | ||
| LVL-fast | 0.011466666666666665 | 0.8 | ||
| LVL-fast | 0.0129 | 0.7 | ||
| LVL-fast | 0.00985 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 1.0 | ||
| LVL-fast | 0.00545 | 0.8 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.007533333333333334 | 1.0 | ||
| LVL-fast | 0.007783333333333334 | 1.0 | ||
| LVL-fast | 0.006316666666666667 | 0.7 | ||
| LVL-fast | 0.011583333333333333 | 0.9 | ||
| LVL-fast | 0.006849999999999999 | 0.9 | ||
| LVL-fast | 0.006116666666666667 | 0.9 | ||
| LVL-fast | 0.0073 | 0.9 | ||
| LVL-fast | 0.012483333333333334 | 0.9 | ||
| LVL-fast | 0.005166666666666667 | 0.7 | ||
| LVL-fast | 0.006733333333333333 | 0.6 | ||
| LVL-fast | 0.005116666666666667 | 0.7 | ||
| LVL-fast | 0.01135 | 0.7 | ||
| LVL-fast | 0.013283333333333334 | 0.8 | ||
| LVL-fast | 0.011783333333333333 | 0.6 | ||
| LVL-fast | 0.009583333333333333 | 0.8 | ||
| LVL-fast | 0.0123 | 1.0 | ||
| LVL-fast | 0.008916666666666666 | 0.7 | ||
| LVL-fast | 0.0126 | 1.0 | ||
| LVL-fast | 0.00635 | 0.9 | ||
| LVL-fast | 0.011216666666666668 | 0.7 | ||
| LVL-fast | 0.006416666666666667 | 1.0 | ||
| LVL-fast | 0.012366666666666666 | 0.9 | ||
| LVL-fast | 0.0082 | 1.0 | ||
| LVL-fast | 0.011183333333333333 | 0.8 | ||
| LVL-fast | 0.011416666666666667 | 0.6 | ||
| LVL-fast | 0.010866666666666667 | 0.8 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.00745 | 1.0 | ||
| LVL-fast | 0.012733333333333334 | 0.9 | ||
| LVL-fast | 0.0105 | 1.0 | ||
| LVL-fast | 0.0053 | 0.6 | ||
| LVL-fast | 0.005833333333333333 | 0.7 | ||
| LVL-fast | 0.010816666666666667 | 0.7 | ||
| LVL-fast | 0.006516666666666667 | 1.0 | ||
| LVL-fast | 0.009949999999999999 | 0.8 | ||
| LVL-fast | 0.008416666666666666 | 0.8 | ||
| LVL-fast | 0.007066666666666666 | 0.8 | ||
| LVL-fast | 0.00655 | 1.0 | ||
| LVL-fast | 0.013016666666666668 | 1.0 | ||
| LVL-fast | 0.012016666666666667 | 0.7 | ||
| LVL-fast | 0.005 | 0.7 | ||
| LVL-fast | 0.010316666666666667 | 0.7 | ||
| LVL-fast | 0.01285 | 0.8 | ||
| LVL-fast | 0.005933333333333333 | 0.8 | ||
| LVL-fast | 0.011516666666666666 | 0.8 | ||
| LVL-fast | 0.012116666666666666 | 0.6 | ||
| LVL-fast | 0.0059499999999999996 | 1.0 | ||
| LVL-fast | 0.012750000000000001 | 0.9 | ||
| LVL-fast | 0.0059 | 1.0 | ||
| LVL-fast | 0.01185 | 0.7 | ||
| LVL-fast | 0.0051333333333333335 | 0.6 | ||
| LVL-fast | 0.007750000000000001 | 0.7 | ||
| LVL-fast | 0.005383333333333334 | 0.9 | ||
| LVL-fast | 0.00515 | 1.0 | ||
| LVL-fast | 0.009266666666666668 | 0.9 | ||
| LVL-fast | 0.00745 | 0.6 | ||
| LVL-fast | 0.0083 | 0.6 | ||
| LVL-fast | 0.010816666666666667 | 0.6 | ||
| LVL-fast | 0.010683333333333333 | 0.6 | ||
| LVL-fast | 0.010816666666666667 | 0.9 | ||
| LVL-fast | 0.013266666666666668 | 0.7 | ||
| LVL-fast | 0.011983333333333334 | 1.0 | ||
| LVL-fast | 0.009899999999999999 | 0.8 | ||
| LVL-fast | 0.007466666666666667 | 0.9 | ||
| LVL-fast | 0.012466666666666666 | 1.0 | ||
| LVL-fast | 0.009766666666666667 | 0.6 | ||
| LVL-fast | 0.008566666666666667 | 0.9 | ||
| LVL-fast | 0.008433333333333333 | 0.6 | ||
| LVL-fast | 0.006833333333333333 | 0.6 | ||
| LVL-fast | 0.0064 | 0.7 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.009216666666666668 | 0.7 | ||
| LVL-fast | 0.009300000000000001 | 1.0 | ||
| LVL-fast | 0.010066666666666666 | 0.6 | ||
| LVL-fast | 0.0073 | 1.0 | ||
| LVL-fast | 0.01285 | 0.8 | ||
| LVL-fast | 0.008383333333333333 | 1.0 | ||
| LVL-fast | 0.009266666666666668 | 0.6 | ||
| LVL-fast | 0.00855 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 1.0 | ||
| LVL-fast | 0.009083333333333334 | 0.8 | ||
| LVL-fast | 0.0111 | 0.7 | ||
| LVL-fast | 0.005566666666666667 | 0.6 | ||
| LVL-fast | 0.009516666666666666 | 0.6 | ||
| LVL-fast | 0.0072 | 1.0 | ||
| LVL-fast | 0.00985 | 0.9 | ||
| LVL-fast | 0.009166666666666667 | 0.7 | ||
| LVL-fast | 0.007316666666666667 | 0.6 | ||
| LVL-fast | 0.005583333333333333 | 1.0 | ||
| LVL-fast | 0.007916666666666666 | 0.7 | ||
| LVL-fast | 0.006333333333333333 | 1.0 | ||
| LVL-fast | 0.012816666666666667 | 0.6 | ||
| LVL-fast | 0.008333333333333333 | 0.6 | ||
| LVL-fast | 0.013033333333333334 | 0.6 | ||
| LVL-fast | 0.0055000000000000005 | 0.7 | ||
| LVL-fast | 0.010916666666666667 | 0.9 | ||
| LVL-fast | 0.007583333333333333 | 0.8 | ||
| LVL-fast | 0.0123 | 1.0 | ||
| LVL-fast | 0.0132 | 0.8 | ||
| LVL-fast | 0.011416666666666667 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 0.8 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.0081 | 1.0 | ||
| LVL-fast | 0.010750000000000001 | 0.7 | ||
| LVL-fast | 0.0060999999999999995 | 0.7 | ||
| LVL-fast | 0.013133333333333334 | 0.6 | ||
| LVL-fast | 0.0054 | 0.7 | ||
| LVL-fast | 0.0055000000000000005 | 0.9 | ||
| LVL-fast | 0.0104 | 1.0 | ||
| LVL-fast | 0.006516666666666667 | 0.7 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.010016666666666667 | 0.7 | ||
| LVL-fast | 0.0104 | 0.6 | ||
| LVL-fast | 0.009983333333333334 | 0.8 | ||
| LVL-fast | 0.012366666666666666 | 0.8 | ||
| LVL-fast | 0.00975 | 0.6 | ||
| LVL-fast | 0.009333333333333334 | 0.9 | ||
| LVL-fast | 0.009183333333333333 | 1.0 | ||
| LVL-fast | 0.0054666666666666665 | 0.8 | ||
| LVL-fast | 0.013266666666666668 | 1.0 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.011300000000000001 | 0.9 | ||
| LVL-fast | 0.006066666666666666 | 0.7 | ||
| LVL-fast | 0.006366666666666667 | 0.7 | ||
| LVL-fast | 0.010816666666666667 | 1.0 | ||
| LVL-fast | 0.0121 | 0.9 | ||
| LVL-fast | 0.0109 | 0.9 | ||
| LVL-fast | 0.012833333333333334 | 0.7 | ||
| LVL-fast | 0.008216666666666667 | 0.9 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.00545 | 0.9 | ||
| LVL-fast | 0.012766666666666667 | 0.9 | ||
| LVL-fast | 0.012983333333333335 | 0.8 | ||
| LVL-fast | 0.009983333333333334 | 0.6 | ||
| LVL-fast | 0.008566666666666667 | 0.7 | ||
| LVL-fast | 0.007566666666666667 | 0.6 | ||
| LVL-fast | 0.005016666666666667 | 0.7 | ||
| LVL-fast | 0.0061333333333333335 | 0.8 | ||
| LVL-fast | 0.011383333333333334 | 0.6 | ||
| LVL-fast | 0.011083333333333334 | 0.9 | ||
| LVL-fast | 0.008383333333333333 | 0.9 | ||
| LVL-fast | 0.0076 | 0.9 | ||
| LVL-fast | 0.010983333333333335 | 0.9 | ||
| LVL-fast | 0.007833333333333333 | 1.0 | ||
| LVL-fast | 0.007216666666666666 | 0.9 | ||
| LVL-fast | 0.013083333333333334 | 0.8 | ||
| LVL-fast | 0.01105 | 0.6 | ||
| LVL-fast | 0.0073 | 1.0 | ||
| LVL-fast | 0.012750000000000001 | 0.8 | ||
| LVL-fast | 0.010816666666666667 | 0.7 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.01235 | 0.8 | ||
| LVL-fast | 0.0121 | 1.0 | ||
| LVL-fast | 0.005116666666666667 | 1.0 | ||
| LVL-fast | 0.012116666666666666 | 0.6 | ||
| LVL-fast | 0.005816666666666666 | 0.7 | ||
| LVL-fast | 0.010683333333333333 | 0.6 | ||
| LVL-fast | 0.007933333333333332 | 0.6 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.006166666666666667 | 0.6 | ||
| LVL-fast | 0.005616666666666667 | 0.9 | ||
| LVL-fast | 0.006466666666666667 | 1.0 | ||
| LVL-fast | 0.00805 | 0.8 | ||
| LVL-fast | 0.005316666666666667 | 0.6 | ||
| LVL-fast | 0.01135 | 0.8 | ||
| LVL-fast | 0.01065 | 1.0 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.010083333333333333 | 0.7 | ||
| LVL-fast | 0.0059499999999999996 | 0.7 | ||
| LVL-fast | 0.0070999999999999995 | 0.8 | ||
| LVL-fast | 0.012216666666666666 | 0.7 | ||
| LVL-fast | 0.011716666666666665 | 0.7 | ||
| LVL-fast | 0.008700000000000001 | 1.0 | ||
| LVL-fast | 0.013083333333333334 | 0.8 | ||
| LVL-fast | 0.008333333333333333 | 0.8 | ||
| LVL-fast | 0.010483333333333334 | 1.0 | ||
| LVL-fast | 0.0066500000000000005 | 1.0 | ||
| LVL-fast | 0.011166666666666667 | 1.0 | ||
| LVL-fast | 0.005416666666666667 | 1.0 | ||
| LVL-fast | 0.012883333333333333 | 0.6 | ||
| LVL-fast | 0.009666666666666665 | 1.0 | ||
| LVL-fast | 0.008866666666666667 | 0.9 | ||
| LVL-fast | 0.0054 | 1.0 | ||
| LVL-fast | 0.0104 | 0.8 | ||
| LVL-fast | 0.00735 | 1.0 | ||
| LVL-fast | 0.008433333333333333 | 0.7 | ||
| LVL-fast | 0.012366666666666666 | 0.7 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.011533333333333333 | 0.6 | ||
| LVL-fast | 0.009183333333333333 | 0.8 | ||
| LVL-fast | 0.0076166666666666666 | 0.8 | ||
| LVL-fast | 0.008450000000000001 | 1.0 | ||
| LVL-fast | 0.012133333333333333 | 0.8 | ||
| LVL-fast | 0.005616666666666667 | 0.7 | ||
| LVL-fast | 0.012516666666666667 | 1.0 | ||
| LVL-fast | 0.00615 | 1.0 | ||
| LVL-fast | 0.007766666666666667 | 0.7 | ||
| LVL-fast | 0.0083 | 0.9 | ||
| LVL-fast | 0.0067 | 1.0 | ||
| LVL-fast | 0.010583333333333333 | 0.8 | ||
| LVL-fast | 0.008216666666666667 | 0.9 | ||
| LVL-fast | 0.013250000000000001 | 0.8 | ||
| LVL-fast | 0.006366666666666667 | 1.0 | ||
| LVL-fast | 0.006816666666666666 | 0.7 | ||
| LVL-fast | 0.013300000000000001 | 0.7 | ||
| LVL-fast | 0.01225 | 0.8 | ||
| LVL-fast | 0.00855 | 0.7 | ||
| LVL-fast | 0.007966666666666667 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 0.8 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.013016666666666668 | 0.9 | ||
| LVL-fast | 0.011383333333333334 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 0.6 | ||
| LVL-fast | 0.0124 | 1.0 | ||
| LVL-fast | 0.00515 | 1.0 | ||
| LVL-fast | 0.010366666666666666 | 0.9 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.011300000000000001 | 1.0 | ||
| LVL-fast | 0.00655 | 0.7 | ||
| LVL-fast | 0.0058 | 0.9 | ||
| LVL-fast | 0.00885 | 1.0 | ||
| LVL-fast | 0.007766666666666667 | 0.8 | ||
| LVL-fast | 0.009016666666666668 | 1.0 | ||
| LVL-fast | 0.00935 | 0.9 | ||
| LVL-fast | 0.008183333333333332 | 0.7 | ||
| LVL-fast | 0.008666666666666666 | 1.0 | ||
| LVL-fast | 0.009449999999999998 | 0.8 | ||
| LVL-fast | 0.0068 | 0.6 | ||
| LVL-fast | 0.010783333333333334 | 0.7 | ||
| LVL-fast | 0.005066666666666666 | 0.9 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.00865 | 0.8 | ||
| LVL-fast | 0.005616666666666667 | 0.7 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.011766666666666667 | 0.7 | ||
| LVL-fast | 0.00955 | 0.9 | ||
| LVL-fast | 0.006833333333333333 | 0.7 | ||
| LVL-fast | 0.0082 | 0.8 | ||
| LVL-fast | 0.005583333333333333 | 0.9 | ||
| LVL-fast | 0.008950000000000001 | 0.9 | ||
| LVL-fast | 0.008083333333333333 | 0.6 | ||
| LVL-fast | 0.009133333333333334 | 0.6 | ||
| LVL-fast | 0.011250000000000001 | 0.9 | ||
| LVL-fast | 0.006483333333333333 | 0.7 | ||
| LVL-fast | 0.006716666666666667 | 1.0 | ||
| LVL-fast | 0.011300000000000001 | 1.0 | ||
| LVL-fast | 0.011333333333333334 | 0.8 | ||
| LVL-fast | 0.01315 | 0.9 | ||
| LVL-fast | 0.011866666666666666 | 0.8 | ||
| LVL-fast | 0.01255 | 0.8 | ||
| LVL-fast | 0.012366666666666666 | 0.6 | ||
| LVL-fast | 0.01055 | 0.9 | ||
| LVL-fast | 0.012966666666666666 | 0.6 | ||
| LVL-fast | 0.007366666666666666 | 1.0 | ||
| LVL-fast | 0.011683333333333332 | 1.0 | ||
| LVL-fast | 0.005333333333333333 | 0.8 | ||
| LVL-fast | 0.010466666666666668 | 0.8 | ||
| LVL-fast | 0.012683333333333333 | 0.7 | ||
| LVL-fast | 0.012866666666666667 | 1.0 | ||
| LVL-fast | 0.007633333333333334 | 0.6 | ||
| LVL-fast | 0.007933333333333332 | 0.8 | ||
| LVL-fast | 0.006683333333333334 | 0.8 | ||
| LVL-fast | 0.009000000000000001 | 1.0 | ||
| LVL-fast | 0.0115 | 0.7 | ||
| LVL-fast | 0.007483333333333333 | 0.9 | ||
| LVL-fast | 0.009333333333333334 | 0.8 | ||
| LVL-fast | 0.0096 | 1.0 | ||
| LVL-fast | 0.006083333333333333 | 0.8 | ||
| LVL-fast | 0.0059 | 0.8 | ||
| LVL-fast | 0.012133333333333333 | 0.8 | ||
| LVL-fast | 0.012083333333333333 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.6 | ||
| LVL-fast | 0.007333333333333333 | 0.9 | ||
| LVL-fast | 0.011183333333333333 | 0.7 | ||
| LVL-fast | 0.0131 | 0.9 | ||
| LVL-fast | 0.01315 | 0.7 | ||
| LVL-fast | 0.0082 | 0.9 | ||
| LVL-fast | 0.008966666666666668 | 1.0 | ||
| LVL-fast | 0.006183333333333333 | 1.0 | ||
| LVL-fast | 0.0069166666666666664 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 0.6 | ||
| LVL-fast | 0.010233333333333334 | 0.6 | ||
| LVL-fast | 0.008316666666666667 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 0.7 | ||
| LVL-fast | 0.011816666666666666 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.7 | ||
| LVL-fast | 0.005 | 1.0 | ||
| LVL-fast | 0.005683333333333334 | 0.7 | ||
| LVL-fast | 0.00825 | 0.7 | ||
| LVL-fast | 0.0108 | 0.8 | ||
| LVL-fast | 0.006166666666666667 | 1.0 | ||
| LVL-fast | 0.009716666666666667 | 0.7 | ||
| LVL-fast | 0.012816666666666667 | 0.7 | ||
| LVL-fast | 0.00525 | 0.8 | ||
| LVL-fast | 0.0129 | 0.8 | ||
| LVL-fast | 0.0062833333333333335 | 0.7 | ||
| LVL-fast | 0.007816666666666666 | 0.6 | ||
| LVL-fast | 0.0127 | 0.6 | ||
| LVL-fast | 0.011949999999999999 | 0.9 | ||
| LVL-fast | 0.011883333333333333 | 0.9 | ||
| LVL-fast | 0.008133333333333333 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.008066666666666666 | 0.9 | ||
| LVL-fast | 0.006016666666666667 | 1.0 | ||
| LVL-fast | 0.00635 | 0.7 | ||
| LVL-fast | 0.00615 | 0.6 | ||
| LVL-fast | 0.011833333333333333 | 0.9 | ||
| LVL-fast | 0.013066666666666667 | 0.8 | ||
| LVL-fast | 0.010616666666666667 | 0.6 | ||
| LVL-fast | 0.007516666666666667 | 0.6 | ||
| LVL-fast | 0.006466666666666667 | 0.8 | ||
| LVL-fast | 0.006816666666666666 | 0.7 | ||
| LVL-fast | 0.0095 | 0.8 | ||
| LVL-fast | 0.010233333333333334 | 0.8 | ||
| LVL-fast | 0.01145 | 0.9 | ||
| LVL-fast | 0.012816666666666667 | 0.7 | ||
| LVL-fast | 0.008283333333333334 | 0.9 | ||
| LVL-fast | 0.006783333333333333 | 0.8 | ||
| LVL-fast | 0.0062 | 0.9 | ||
| LVL-fast | 0.009233333333333335 | 0.7 | ||
| LVL-fast | 0.011766666666666667 | 0.6 | ||
| LVL-fast | 0.013033333333333334 | 0.8 | ||
| LVL-fast | 0.011583333333333333 | 1.0 | ||
| LVL-fast | 0.005416666666666667 | 0.6 | ||
| LVL-fast | 0.0064 | 0.6 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.007 | 0.6 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.0129 | 0.6 | ||
| LVL-fast | 0.006750000000000001 | 0.7 | ||
| LVL-fast | 0.011083333333333334 | 0.8 | ||
| LVL-fast | 0.010933333333333333 | 0.8 | ||
| LVL-fast | 0.012883333333333333 | 1.0 | ||
| LVL-fast | 0.0052833333333333335 | 0.8 | ||
| LVL-fast | 0.009233333333333335 | 0.9 | ||
| LVL-fast | 0.01105 | 0.6 | ||
| LVL-fast | 0.01145 | 1.0 | ||
| LVL-fast | 0.007833333333333333 | 0.9 | ||
| LVL-fast | 0.008933333333333333 | 0.6 | ||
| LVL-fast | 0.005583333333333333 | 0.8 | ||
| LVL-fast | 0.0103 | 0.9 | ||
| LVL-fast | 0.011866666666666666 | 0.7 | ||
| LVL-fast | 0.013300000000000001 | 0.9 | ||
| LVL-fast | 0.011000000000000001 | 0.9 | ||
| LVL-fast | 0.008583333333333333 | 0.9 | ||
| LVL-fast | 0.008683333333333333 | 0.9 | ||
| LVL-fast | 0.011383333333333334 | 0.8 | ||
| LVL-fast | 0.008766666666666667 | 0.7 | ||
| LVL-fast | 0.009399999999999999 | 0.7 | ||
| LVL-fast | 0.006266666666666667 | 0.6 | ||
| LVL-fast | 0.010266666666666667 | 1.0 | ||
| LVL-fast | 0.01295 | 1.0 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.006333333333333333 | 0.9 | ||
| LVL-fast | 0.0059 | 0.6 | ||
| LVL-fast | 0.01055 | 0.7 | ||
| LVL-fast | 0.0069 | 0.6 | ||
| LVL-fast | 0.0103 | 0.9 | ||
| LVL-fast | 0.012983333333333335 | 1.0 | ||
| LVL-fast | 0.008866666666666667 | 1.0 | ||
| LVL-fast | 0.010616666666666667 | 0.6 | ||
| LVL-fast | 0.009699999999999999 | 0.6 | ||
| LVL-fast | 0.007216666666666666 | 0.6 | ||
| LVL-fast | 0.010933333333333333 | 0.7 | ||
| LVL-fast | 0.01265 | 0.8 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.005066666666666666 | 0.9 | ||
| LVL-fast | 0.011966666666666665 | 0.9 | ||
| LVL-fast | 0.005683333333333334 | 0.9 | ||
| LVL-fast | 0.007866666666666666 | 0.6 | ||
| LVL-fast | 0.00835 | 0.9 | ||
| LVL-fast | 0.00655 | 0.9 | ||
| LVL-fast | 0.0126 | 0.8 | ||
| LVL-fast | 0.006083333333333333 | 0.8 | ||
| LVL-fast | 0.007833333333333333 | 0.9 | ||
| LVL-fast | 0.011116666666666667 | 0.6 | ||
| LVL-fast | 0.011666666666666665 | 0.9 | ||
| LVL-fast | 0.010133333333333333 | 0.6 | ||
| LVL-fast | 0.009649999999999999 | 0.8 | ||
| LVL-fast | 0.00745 | 0.8 | ||
| LVL-fast | 0.007666666666666667 | 0.6 | ||
| LVL-fast | 0.0074333333333333335 | 1.0 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.008033333333333333 | 0.6 | ||
| LVL-fast | 0.005716666666666667 | 0.7 | ||
| LVL-fast | 0.010483333333333334 | 0.9 | ||
| LVL-fast | 0.00875 | 0.8 | ||
| LVL-fast | 0.007833333333333333 | 0.9 | ||
| LVL-fast | 0.010583333333333333 | 0.9 | ||
| LVL-fast | 0.011883333333333333 | 0.8 | ||
| LVL-fast | 0.006616666666666667 | 0.6 | ||
| LVL-fast | 0.007316666666666667 | 0.8 | ||
| LVL-fast | 0.009466666666666667 | 0.8 | ||
| LVL-fast | 0.01025 | 0.7 | ||
| LVL-fast | 0.00635 | 0.9 | ||
| LVL-fast | 0.0054666666666666665 | 0.9 | ||
| LVL-fast | 0.006033333333333333 | 1.0 | ||
| LVL-fast | 0.0111 | 0.9 | ||
| LVL-fast | 0.007833333333333333 | 1.0 | ||
| LVL-fast | 0.005233333333333334 | 0.7 | ||
| LVL-fast | 0.009833333333333333 | 0.7 | ||
| LVL-fast | 0.006333333333333333 | 0.9 | ||
| LVL-fast | 0.010983333333333335 | 0.6 | ||
| LVL-fast | 0.007983333333333334 | 0.9 | ||
| LVL-fast | 0.011716666666666665 | 0.8 | ||
| LVL-fast | 0.009366666666666667 | 0.7 | ||
| LVL-fast | 0.006883333333333333 | 0.6 | ||
| LVL-fast | 0.009949999999999999 | 0.7 | ||
| LVL-fast | 0.006750000000000001 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.8 | ||
| LVL-fast | 0.010033333333333333 | 0.6 | ||
| LVL-fast | 0.013266666666666668 | 1.0 | ||
| LVL-fast | 0.008683333333333333 | 0.7 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.01065 | 0.8 | ||
| LVL-fast | 0.008866666666666667 | 0.8 | ||
| LVL-fast | 0.0071333333333333335 | 0.8 | ||
| LVL-fast | 0.012466666666666666 | 0.7 | ||
| LVL-fast | 0.011183333333333333 | 1.0 | ||
| LVL-fast | 0.007083333333333333 | 0.8 | ||
| LVL-fast | 0.006733333333333333 | 0.8 | ||
| LVL-fast | 0.009383333333333332 | 0.9 | ||
| LVL-fast | 0.0052833333333333335 | 0.6 | ||
| LVL-fast | 0.009533333333333333 | 0.9 | ||
| LVL-fast | 0.010633333333333333 | 0.9 | ||
| LVL-fast | 0.008316666666666667 | 0.6 | ||
| LVL-fast | 0.01135 | 1.0 | ||
| LVL-fast | 0.00575 | 1.0 | ||
| LVL-fast | 0.007750000000000001 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.7 | ||
| LVL-fast | 0.011783333333333333 | 0.6 | ||
| LVL-fast | 0.009683333333333332 | 0.7 | ||
| LVL-fast | 0.007666666666666667 | 0.9 | ||
| LVL-fast | 0.012566666666666667 | 0.9 | ||
| LVL-fast | 0.0131 | 0.6 | ||
| LVL-fast | 0.00575 | 0.7 | ||
| LVL-fast | 0.009983333333333334 | 0.9 | ||
| LVL-fast | 0.010566666666666667 | 0.6 | ||
| LVL-fast | 0.005566666666666667 | 0.9 | ||
| LVL-fast | 0.012516666666666667 | 0.6 | ||
| LVL-fast | 0.0070999999999999995 | 1.0 | ||
| LVL-fast | 0.012766666666666667 | 0.9 | ||
| LVL-fast | 0.012866666666666667 | 0.8 | ||
| LVL-fast | 0.011783333333333333 | 0.8 | ||
| LVL-fast | 0.011883333333333333 | 0.6 | ||
| LVL-fast | 0.007066666666666666 | 0.6 | ||
| LVL-fast | 0.006666666666666667 | 0.6 | ||
| LVL-fast | 0.0084 | 0.6 | ||
| LVL-fast | 0.005366666666666667 | 0.8 | ||
| LVL-fast | 0.009133333333333334 | 0.6 | ||
| LVL-fast | 0.012316666666666667 | 0.9 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.010533333333333334 | 0.6 | ||
| LVL-fast | 0.0062 | 0.7 | ||
| LVL-fast | 0.013166666666666667 | 0.8 | ||
| LVL-fast | 0.007633333333333334 | 0.8 | ||
| LVL-fast | 0.005583333333333333 | 1.0 | ||
| LVL-fast | 0.009399999999999999 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.7 | ||
| LVL-fast | 0.0083 | 1.0 | ||
| LVL-fast | 0.008433333333333333 | 0.7 | ||
| LVL-fast | 0.006933333333333333 | 0.7 | ||
| LVL-fast | 0.0091 | 0.8 | ||
| LVL-fast | 0.007716666666666667 | 0.7 | ||
| LVL-fast | 0.01095 | 1.0 | ||
| LVL-fast | 0.007266666666666667 | 1.0 | ||
| LVL-fast | 0.007166666666666667 | 0.7 | ||
| LVL-fast | 0.0111 | 1.0 | ||
| LVL-fast | 0.007216666666666666 | 0.8 | ||
| LVL-fast | 0.012033333333333333 | 0.6 | ||
| LVL-fast | 0.01065 | 0.7 | ||
| LVL-fast | 0.009533333333333333 | 0.7 | ||
| LVL-fast | 0.00885 | 0.6 | ||
| LVL-fast | 0.008166666666666666 | 0.9 | ||
| LVL-fast | 0.013166666666666667 | 0.7 | ||
| LVL-fast | 0.0127 | 0.7 | ||
| LVL-fast | 0.013266666666666668 | 0.7 | ||
| LVL-fast | 0.011000000000000001 | 1.0 | ||
| LVL-fast | 0.005016666666666667 | 0.6 | ||
| LVL-fast | 0.012833333333333334 | 0.8 | ||
| LVL-fast | 0.009016666666666668 | 1.0 | ||
| LVL-fast | 0.0066 | 0.6 | ||
| LVL-fast | 0.008366666666666666 | 0.6 | ||
| LVL-fast | 0.0057 | 1.0 | ||
| LVL-fast | 0.008433333333333333 | 0.8 | ||
| LVL-fast | 0.005716666666666667 | 0.9 | ||
| LVL-fast | 0.0062833333333333335 | 1.0 | ||
| LVL-fast | 0.011383333333333334 | 0.9 | ||
| LVL-fast | 0.010666666666666666 | 0.9 | ||
| LVL-fast | 0.00825 | 0.9 | ||
| LVL-fast | 0.007016666666666667 | 1.0 | ||
| LVL-fast | 0.01005 | 0.7 | ||
| LVL-fast | 0.013116666666666667 | 0.7 | ||
| LVL-fast | 0.009399999999999999 | 0.6 | ||
| LVL-fast | 0.011616666666666666 | 1.0 | ||
| LVL-fast | 0.009283333333333334 | 0.7 | ||
| LVL-fast | 0.011016666666666668 | 0.7 | ||
| LVL-fast | 0.0089 | 0.9 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.00535 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.6 | ||
| LVL-fast | 0.007033333333333333 | 0.9 | ||
| LVL-fast | 0.011183333333333333 | 0.6 | ||
| LVL-fast | 0.010483333333333334 | 0.8 | ||
| LVL-fast | 0.0121 | 0.6 | ||
| LVL-fast | 0.010966666666666668 | 0.8 | ||
| LVL-fast | 0.012283333333333334 | 0.6 | ||
| LVL-fast | 0.0076500000000000005 | 0.8 | ||
| LVL-fast | 0.006016666666666667 | 1.0 | ||
| LVL-fast | 0.00905 | 0.7 | ||
| LVL-fast | 0.009516666666666666 | 0.8 | ||
| LVL-fast | 0.006583333333333333 | 0.6 | ||
| LVL-fast | 0.009200000000000002 | 0.7 | ||
| LVL-fast | 0.0095 | 1.0 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.0066500000000000005 | 0.6 | ||
| LVL-fast | 0.011866666666666666 | 1.0 | ||
| LVL-fast | 0.008366666666666666 | 0.9 | ||
| LVL-fast | 0.006833333333333333 | 0.8 | ||
| LVL-fast | 0.012583333333333334 | 0.8 | ||
| LVL-fast | 0.011983333333333334 | 0.8 | ||
| LVL-fast | 0.010933333333333333 | 0.9 | ||
| LVL-fast | 0.010466666666666668 | 0.9 | ||
| LVL-fast | 0.0096 | 0.8 | ||
| LVL-fast | 0.010416666666666666 | 0.9 | ||
| LVL-fast | 0.00525 | 0.6 | ||
| LVL-fast | 0.006983333333333333 | 0.7 | ||
| LVL-fast | 0.01155 | 0.9 | ||
| LVL-fast | 0.007583333333333333 | 1.0 | ||
| LVL-fast | 0.006116666666666667 | 0.7 | ||
| LVL-fast | 0.00915 | 0.8 | ||
| LVL-fast | 0.009083333333333334 | 0.6 | ||
| LVL-fast | 0.009866666666666666 | 0.6 | ||
| LVL-fast | 0.0052833333333333335 | 0.9 | ||
| LVL-fast | 0.007166666666666667 | 0.6 | ||
| LVL-fast | 0.0085 | 0.7 | ||
| LVL-fast | 0.012483333333333334 | 0.9 | ||
| LVL-fast | 0.009266666666666668 | 1.0 | ||
| LVL-fast | 0.006533333333333334 | 1.0 | ||
| LVL-fast | 0.006366666666666667 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 0.7 | ||
| LVL-fast | 0.0064333333333333334 | 0.9 | ||
| LVL-fast | 0.007066666666666666 | 0.8 | ||
| LVL-fast | 0.008616666666666667 | 0.9 | ||
| LVL-fast | 0.0057333333333333325 | 0.7 | ||
| LVL-fast | 0.012233333333333334 | 1.0 | ||
| LVL-fast | 0.011433333333333334 | 0.9 | ||
| LVL-fast | 0.01305 | 0.8 | ||
| LVL-fast | 0.008950000000000001 | 0.6 | ||
| LVL-fast | 0.012983333333333335 | 0.8 | ||
| LVL-fast | 0.005233333333333334 | 0.8 | ||
| LVL-fast | 0.0059499999999999996 | 0.7 | ||
| LVL-fast | 0.01225 | 0.9 | ||
| LVL-fast | 0.010483333333333334 | 0.7 | ||
| LVL-fast | 0.011699999999999999 | 0.8 | ||
| LVL-fast | 0.009616666666666666 | 0.6 | ||
| LVL-fast | 0.011183333333333333 | 0.6 | ||
| LVL-fast | 0.0115 | 1.0 | ||
| LVL-fast | 0.008966666666666668 | 0.6 | ||
| LVL-fast | 0.007783333333333334 | 0.8 | ||
| LVL-fast | 0.01135 | 0.7 | ||
| LVL-fast | 0.007766666666666667 | 0.9 | ||
| LVL-fast | 0.005666666666666667 | 0.8 | ||
| LVL-fast | 0.006666666666666667 | 0.6 | ||
| LVL-fast | 0.011083333333333334 | 0.9 | ||
| LVL-fast | 0.011116666666666667 | 0.8 | ||
| LVL-fast | 0.005883333333333333 | 0.8 | ||
| LVL-fast | 0.0096 | 0.9 | ||
| LVL-fast | 0.009016666666666668 | 0.6 | ||
| LVL-fast | 0.009116666666666667 | 0.8 | ||
| LVL-fast | 0.009016666666666668 | 0.6 | ||
| LVL-fast | 0.01295 | 0.9 | ||
| LVL-fast | 0.00605 | 1.0 | ||
| LVL-fast | 0.005533333333333334 | 1.0 | ||
| LVL-fast | 0.0056 | 0.7 | ||
| LVL-fast | 0.0082 | 0.6 | ||
| LVL-fast | 0.01285 | 0.7 | ||
| LVL-fast | 0.007516666666666667 | 0.9 | ||
| LVL-fast | 0.010466666666666668 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 0.6 | ||
| LVL-fast | 0.009699999999999999 | 0.6 | ||
| LVL-fast | 0.011466666666666665 | 1.0 | ||
| LVL-fast | 0.0084 | 1.0 | ||
| LVL-fast | 0.009449999999999998 | 0.6 | ||
| LVL-fast | 0.006583333333333333 | 0.9 | ||
| LVL-fast | 0.007266666666666667 | 0.7 | ||
| LVL-fast | 0.009833333333333333 | 0.6 | ||
| LVL-fast | 0.012916666666666667 | 0.9 | ||
| LVL-fast | 0.012633333333333333 | 0.9 | ||
| LVL-fast | 0.005866666666666667 | 0.8 | ||
| LVL-fast | 0.008583333333333333 | 0.6 | ||
| LVL-fast | 0.006183333333333333 | 1.0 | ||
| LVL-fast | 0.011566666666666666 | 0.9 | ||
| LVL-fast | 0.007416666666666667 | 1.0 | ||
| LVL-fast | 0.008333333333333333 | 0.8 | ||
| LVL-fast | 0.009733333333333333 | 0.8 | ||
| LVL-fast | 0.010199999999999999 | 0.8 | ||
| LVL-fast | 0.005783333333333333 | 0.6 | ||
| LVL-fast | 0.006849999999999999 | 0.9 | ||
| LVL-fast | 0.009000000000000001 | 0.8 | ||
| LVL-fast | 0.009833333333333333 | 0.8 | ||
| LVL-fast | 0.007316666666666667 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 0.6 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.011333333333333334 | 1.0 | ||
| LVL-fast | 0.007866666666666666 | 0.9 | ||
| LVL-fast | 0.011083333333333334 | 1.0 | ||
| LVL-fast | 0.00975 | 0.6 | ||
| LVL-fast | 0.009016666666666668 | 0.6 | ||
| LVL-fast | 0.0106 | 0.9 | ||
| LVL-fast | 0.0056500000000000005 | 0.8 | ||
| LVL-fast | 0.012133333333333333 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.6 | ||
| LVL-fast | 0.012716666666666666 | 0.9 | ||
| LVL-fast | 0.008966666666666668 | 0.9 | ||
| LVL-fast | 0.005533333333333334 | 1.0 | ||
| LVL-fast | 0.007083333333333333 | 0.6 | ||
| LVL-fast | 0.0064333333333333334 | 0.9 | ||
| LVL-fast | 0.011583333333333333 | 0.7 | ||
| LVL-fast | 0.00555 | 0.7 | ||
| LVL-fast | 0.010316666666666667 | 0.8 | ||
| LVL-fast | 0.008816666666666667 | 0.7 | ||
| LVL-fast | 0.010866666666666667 | 1.0 | ||
| LVL-fast | 0.012216666666666666 | 0.8 | ||
| LVL-fast | 0.00705 | 0.6 | ||
| LVL-fast | 0.007483333333333333 | 0.7 | ||
| LVL-fast | 0.00745 | 0.6 | ||
| LVL-fast | 0.00625 | 0.7 | ||
| LVL-fast | 0.01295 | 0.8 | ||
| LVL-fast | 0.0070999999999999995 | 0.9 | ||
| LVL-fast | 0.013166666666666667 | 1.0 | ||
| LVL-fast | 0.0067 | 0.9 | ||
| LVL-fast | 0.007583333333333333 | 0.7 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.013166666666666667 | 0.9 | ||
| LVL-fast | 0.01105 | 0.9 | ||
| LVL-fast | 0.008 | 0.7 | ||
| LVL-fast | 0.008816666666666667 | 0.8 | ||
| LVL-fast | 0.0055000000000000005 | 0.9 | ||
| LVL-fast | 0.007416666666666667 | 0.8 | ||
| LVL-fast | 0.00625 | 0.8 | ||
| LVL-fast | 0.0076166666666666666 | 0.7 | ||
| LVL-fast | 0.010883333333333333 | 0.7 | ||
| LVL-fast | 0.01 | 0.6 | ||
| LVL-fast | 0.009616666666666666 | 0.8 | ||
| LVL-fast | 0.011616666666666666 | 1.0 | ||
| LVL-fast | 0.008133333333333333 | 0.8 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.006033333333333333 | 0.6 | ||
| LVL-fast | 0.009916666666666666 | 0.7 | ||
| LVL-fast | 0.007533333333333334 | 1.0 | ||
| LVL-fast | 0.0077 | 0.9 | ||
| LVL-fast | 0.007183333333333333 | 0.7 | ||
| LVL-fast | 0.005083333333333333 | 0.8 | ||
| LVL-fast | 0.012183333333333332 | 0.8 | ||
| LVL-fast | 0.011016666666666668 | 0.6 | ||
| LVL-fast | 0.0085 | 0.8 | ||
| LVL-fast | 0.008333333333333333 | 0.9 | ||
| LVL-fast | 0.006983333333333333 | 1.0 | ||
| LVL-fast | 0.00545 | 0.6 | ||
| LVL-fast | 0.007183333333333333 | 0.9 | ||
| LVL-fast | 0.0067 | 0.8 | ||
| LVL-fast | 0.011433333333333334 | 0.6 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.0112 | 0.9 | 0.5555555555555556 | |
| LVL-fast | 0.008483333333333334 | 0.6 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.011083333333333334 | 1.0 | ||
| LVL-fast | 0.01295 | 0.9 | ||
| LVL-fast | 0.01065 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.7 | ||
| LVL-fast | 0.005216666666666666 | 0.6 | ||
| LVL-fast | 0.0129 | 1.0 | ||
| LVL-fast | 0.00745 | 1.0 | ||
| LVL-fast | 0.011883333333333333 | 0.9 | ||
| LVL-fast | 0.007383333333333334 | 0.6 | ||
| LVL-fast | 0.005483333333333334 | 1.0 | ||
| LVL-fast | 0.012 | 1.0 | ||
| LVL-fast | 0.01155 | 0.7 | ||
| LVL-fast | 0.00955 | 0.9 | ||
| LVL-fast | 0.007016666666666667 | 0.7 | ||
| LVL-fast | 0.009399999999999999 | 0.9 | ||
| LVL-fast | 0.009000000000000001 | 0.7 | ||
| LVL-fast | 0.006083333333333333 | 0.9 | ||
| LVL-fast | 0.010750000000000001 | 1.0 | ||
| LVL-fast | 0.0131 | 0.6 | ||
| LVL-fast | 0.008616666666666667 | 0.9 | ||
| LVL-fast | 0.006166666666666667 | 0.6 | ||
| LVL-fast | 0.006183333333333333 | 1.0 | ||
| LVL-fast | 0.0121 | 0.6 | ||
| LVL-fast | 0.009716666666666667 | 0.9 | ||
| LVL-fast | 0.005483333333333334 | 1.0 | ||
| LVL-fast | 0.011966666666666665 | 0.9 | ||
| LVL-fast | 0.009883333333333333 | 0.9 | ||
| LVL-fast | 0.00525 | 1.0 | ||
| LVL-fast | 0.00885 | 0.7 | ||
| LVL-fast | 0.010033333333333333 | 0.8 | ||
| LVL-fast | 0.00605 | 0.7 | ||
| LVL-fast | 0.006716666666666667 | 0.8 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.009366666666666667 | 0.8 | ||
| LVL-fast | 0.009399999999999999 | 0.7 | ||
| LVL-fast | 0.009899999999999999 | 1.0 | ||
| LVL-fast | 0.010633333333333333 | 0.7 | ||
| LVL-fast | 0.011333333333333334 | 0.7 | ||
| LVL-fast | 0.00625 | 0.9 | ||
| LVL-fast | 0.009316666666666668 | 0.8 | ||
| LVL-fast | 0.0101 | 0.6 | ||
| LVL-fast | 0.012883333333333333 | 0.9 | ||
| LVL-fast | 0.009616666666666666 | 0.6 | ||
| LVL-fast | 0.0076 | 0.6 | ||
| LVL-fast | 0.00515 | 1.0 | ||
| LVL-fast | 0.0062833333333333335 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 0.8 | ||
| LVL-fast | 0.012583333333333334 | 0.7 | ||
| LVL-fast | 0.005433333333333333 | 0.7 | ||
| LVL-fast | 0.0064 | 1.0 | ||
| LVL-fast | 0.006066666666666666 | 1.0 | ||
| LVL-fast | 0.0062833333333333335 | 0.8 | ||
| LVL-fast | 0.01145 | 1.0 | ||
| LVL-fast | 0.010983333333333335 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 1.0 | ||
| LVL-fast | 0.0088 | 0.8 | ||
| LVL-fast | 0.01215 | 0.6 | ||
| LVL-fast | 0.0059 | 0.9 | ||
| LVL-fast | 0.010883333333333333 | 0.6 | ||
| LVL-fast | 0.006466666666666667 | 0.9 | ||
| LVL-fast | 0.008383333333333333 | 0.6 | ||
| LVL-fast | 0.01085 | 0.7 | ||
| LVL-fast | 0.008783333333333334 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.9 | ||
| LVL-fast | 0.00795 | 0.7 | ||
| LVL-fast | 0.009699999999999999 | 1.0 | ||
| LVL-fast | 0.009899999999999999 | 0.8 | ||
| LVL-fast | 0.007750000000000001 | 1.0 | ||
| LVL-fast | 0.012666666666666666 | 0.6 | ||
| LVL-fast | 0.005266666666666667 | 0.7 | ||
| LVL-fast | 0.006766666666666667 | 0.6 | ||
| LVL-fast | 0.012416666666666666 | 0.9 | ||
| LVL-fast | 0.012066666666666667 | 0.7 | ||
| LVL-fast | 0.012116666666666666 | 0.9 | ||
| LVL-fast | 0.009066666666666667 | 0.7 | ||
| LVL-fast | 0.00865 | 0.7 | ||
| LVL-fast | 0.0114 | 1.0 | ||
| LVL-fast | 0.009433333333333332 | 0.7 | ||
| LVL-fast | 0.0076 | 0.8 | ||
| LVL-fast | 0.0125 | 0.6 | ||
| LVL-fast | 0.0069 | 0.9 | ||
| LVL-fast | 0.0058 | 0.9 | ||
| LVL-fast | 0.011633333333333332 | 1.0 | ||
| LVL-fast | 0.010666666666666666 | 0.6 | ||
| LVL-fast | 0.005433333333333333 | 0.8 | ||
| LVL-fast | 0.008566666666666667 | 1.0 | ||
| LVL-fast | 0.013283333333333334 | 1.0 | ||
| LVL-fast | 0.010983333333333335 | 0.7 | ||
| LVL-fast | 0.011966666666666665 | 1.0 | ||
| LVL-fast | 0.011166666666666667 | 1.0 | ||
| LVL-fast | 0.009966666666666667 | 1.0 | ||
| LVL-fast | 0.009899999999999999 | 0.9 | ||
| LVL-fast | 0.011416666666666667 | 1.0 | ||
| LVL-fast | 0.0059 | 0.9 | ||
| LVL-fast | 0.010283333333333334 | 0.7 | ||
| LVL-fast | 0.009966666666666667 | 0.7 | ||
| LVL-fast | 0.009300000000000001 | 0.6 | ||
| LVL-fast | 0.011250000000000001 | 0.6 | ||
| LVL-fast | 0.005716666666666667 | 1.0 | ||
| LVL-fast | 0.006666666666666667 | 0.8 | ||
| LVL-fast | 0.011833333333333333 | 1.0 | ||
| LVL-fast | 0.01215 | 0.6 | ||
| LVL-fast | 0.00525 | 0.9 | ||
| LVL-fast | 0.0125 | 1.0 | ||
| LVL-fast | 0.010983333333333335 | 0.9 | ||
| LVL-fast | 0.0115 | 0.8 | ||
| LVL-fast | 0.008950000000000001 | 0.8 | ||
| LVL-fast | 0.006366666666666667 | 0.8 | ||
| LVL-fast | 0.009666666666666665 | 0.9 | ||
| LVL-fast | 0.005166666666666667 | 0.6 | ||
| LVL-fast | 0.009066666666666667 | 0.8 | ||
| LVL-fast | 0.011616666666666666 | 0.9 | ||
| LVL-fast | 0.005066666666666666 | 0.7 | ||
| LVL-fast | 0.010483333333333334 | 0.7 | ||
| LVL-fast | 0.010833333333333334 | 0.9 | ||
| LVL-fast | 0.007316666666666667 | 0.9 | ||
| LVL-fast | 0.012750000000000001 | 0.6 | ||
| LVL-fast | 0.010783333333333334 | 0.7 | ||
| LVL-fast | 0.012516666666666667 | 1.0 | ||
| LVL-fast | 0.012316666666666667 | 0.7 | ||
| LVL-fast | 0.009933333333333332 | 0.7 | ||
| LVL-fast | 0.010266666666666667 | 1.0 | ||
| LVL-fast | 0.009183333333333333 | 0.9 | ||
| LVL-fast | 0.0068 | 0.6 | ||
| LVL-fast | 0.00515 | 0.9 | ||
| LVL-fast | 0.0056 | 0.8 | ||
| LVL-fast | 0.012533333333333334 | 0.8 | ||
| LVL-fast | 0.007666666666666667 | 1.0 | ||
| LVL-fast | 0.011899999999999999 | 0.6 | ||
| LVL-fast | 0.007933333333333332 | 0.6 | ||
| LVL-fast | 0.0131 | 0.9 | ||
| LVL-fast | 0.008366666666666666 | 0.6 | ||
| LVL-fast | 0.006733333333333333 | 1.0 | ||
| LVL-fast | 0.01045 | 0.6 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.0057 | 1.0 | ||
| LVL-fast | 0.011483333333333333 | 0.9 | ||
| LVL-fast | 0.00625 | 0.8 | ||
| LVL-fast | 0.011116666666666667 | 0.8 | ||
| LVL-fast | 0.009449999999999998 | 1.0 | ||
| LVL-fast | 0.00535 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.7 | ||
| LVL-fast | 0.006 | 0.9 | ||
| LVL-fast | 0.009133333333333334 | 1.0 | ||
| LVL-fast | 0.009200000000000002 | 0.9 | ||
| LVL-fast | 0.012633333333333333 | 1.0 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.006683333333333334 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.9 | ||
| LVL-fast | 0.006883333333333333 | 1.0 | ||
| LVL-fast | 0.010966666666666668 | 0.7 | ||
| LVL-fast | 0.010066666666666666 | 1.0 | ||
| LVL-fast | 0.010783333333333334 | 0.8 | ||
| LVL-fast | 0.0129 | 1.0 | ||
| LVL-fast | 0.00985 | 0.9 | ||
| LVL-fast | 0.007666666666666667 | 1.0 | ||
| LVL-fast | 0.0126 | 0.9 | ||
| LVL-fast | 0.010233333333333334 | 0.8 | ||
| LVL-fast | 0.0078000000000000005 | 1.0 | ||
| LVL-fast | 0.010816666666666667 | 1.0 | ||
| LVL-fast | 0.011866666666666666 | 0.7 | ||
| LVL-fast | 0.01305 | 0.6 | ||
| LVL-fast | 0.00605 | 0.6 | ||
| LVL-fast | 0.010383333333333333 | 0.7 | ||
| LVL-fast | 0.010983333333333335 | 0.6 | ||
| LVL-fast | 0.012483333333333334 | 0.7 | ||
| LVL-fast | 0.013016666666666668 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.7 | ||
| LVL-fast | 0.010483333333333334 | 1.0 | ||
| LVL-fast | 0.008333333333333333 | 0.7 | ||
| LVL-fast | 0.0082 | 0.0 | ||
| LVL-fast | 0.010483333333333334 | 0.0 | ||
| LVL-fast | 0.01135 | 0.3 | ||
| LVL-fast | 0.011166666666666667 | 0.7 | ||
| LVL-fast | 0.00975 | 0.7 | ||
| LVL-fast | 0.012466666666666666 | 0.2 | ||
| LVL-fast | 0.00985 | 0.8 | ||
| LVL-fast | 0.005183333333333333 | 0.3 | ||
| LVL-fast | 0.00735 | 0.1 | ||
| LVL-fast | 0.013316666666666668 | 0.1 | ||
| LVL-fast | 0.005433333333333333 | 0.9 | ||
| LVL-fast | 0.008700000000000001 | 0.3 | ||
| LVL-fast | 0.011566666666666666 | 0.3 | ||
| LVL-fast | 0.006233333333333333 | 0.8 | ||
| LVL-fast | 0.007883333333333332 | 0.2 | ||
| LVL-fast | 0.00755 | 0.4 | ||
| LVL-fast | 0.005816666666666666 | 1.0 | ||
| LVL-fast | 0.006483333333333333 | 0.3 | ||
| LVL-fast | 0.008133333333333333 | 1.0 | 0.6666666666666666 | |
| LVL-fast | 0.009300000000000001 | 1.0 | ||
| LVL-fast | 0.010266666666666667 | 0.4 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.011216666666666668 | 0.3 | ||
| LVL-fast | 0.011316666666666668 | 0.3 | ||
| LVL-fast | 0.010183333333333332 | 0.5 | ||
| LVL-fast | 0.012266666666666667 | 0.2 | ||
| LVL-fast | 0.011583333333333333 | 1.0 | ||
| LVL-fast | 0.007750000000000001 | 0.0 | ||
| LVL-fast | 0.009200000000000002 | 0.3 | ||
| LVL-fast | 0.007933333333333332 | 0.3 | ||
| LVL-fast | 0.007 | 1.0 | ||
| LVL-fast | 0.010750000000000001 | 0.1 | ||
| LVL-fast | 0.007983333333333334 | 0.8 | ||
| LVL-fast | 0.0116 | 0.9 | ||
| LVL-fast | 0.01005 | 0.5 | ||
| LVL-fast | 0.007866666666666666 | 0.8 | ||
| LVL-fast | 0.008833333333333334 | 0.9 | ||
| LVL-fast | 0.007316666666666667 | 0.6 | ||
| LVL-fast | 0.006266666666666667 | 0.3 | ||
| LVL-fast | 0.005783333333333333 | 0.9 | ||
| LVL-fast | 0.010766666666666667 | 0.5 | ||
| LVL-fast | 0.007816666666666666 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 0.2 | ||
| LVL-fast | 0.01235 | 0.7 | ||
| LVL-fast | 0.009316666666666668 | 0.5 | ||
| LVL-fast | 0.01305 | 0.8 | ||
| LVL-fast | 0.008183333333333332 | 0.6 | ||
| LVL-fast | 0.0062 | 0.1 | ||
| LVL-fast | 0.01145 | 0.2 | ||
| LVL-fast | 0.010766666666666667 | 0.1 | ||
| LVL-fast | 0.006333333333333333 | 0.2 | ||
| LVL-fast | 0.006866666666666666 | 0.3 | ||
| LVL-fast | 0.006116666666666667 | 0.5 | ||
| LVL-fast | 0.0111 | 0.2 | ||
| LVL-fast | 0.008283333333333334 | 0.0 | ||
| LVL-fast | 0.01265 | 0.9 | ||
| LVL-fast | 0.011166666666666667 | 0.0 | ||
| LVL-fast | 0.012783333333333334 | 0.3 | ||
| LVL-fast | 0.005016666666666667 | 0.7 | ||
| LVL-fast | 0.012333333333333333 | 0.4 | ||
| LVL-fast | 0.012316666666666667 | 0.5 | ||
| LVL-fast | 0.010533333333333334 | 0.7 | ||
| LVL-fast | 0.008083333333333333 | 0.2 | ||
| LVL-fast | 0.00545 | 0.2 | ||
| LVL-fast | 0.01005 | 0.0 | ||
| LVL-fast | 0.00805 | 0.7 | ||
| LVL-fast | 0.012983333333333335 | 0.9 | ||
| LVL-fast | 0.010366666666666666 | 0.0 | ||
| LVL-fast | 0.007466666666666667 | 0.9 | ||
| LVL-fast | 0.006066666666666666 | 0.0 | ||
| LVL-fast | 0.007083333333333333 | 0.5 | ||
| LVL-fast | 0.006500000000000001 | 0.1 | ||
| LVL-fast | 0.005316666666666667 | 0.3 | ||
| LVL-fast | 0.012633333333333333 | 0.0 | ||
| LVL-fast | 0.00515 | 0.0 | ||
| LVL-fast | 0.011699999999999999 | 0.2 | ||
| LVL-fast | 0.0064333333333333334 | 0.5 | ||
| LVL-fast | 0.009699999999999999 | 0.8 | ||
| LVL-fast | 0.0084 | 0.8 | ||
| LVL-fast | 0.0121 | 0.5 | ||
| LVL-fast | 0.0103 | 0.0 | ||
| LVL-fast | 0.0066 | 0.6 | ||
| LVL-fast | 0.010633333333333333 | 0.1 | ||
| LVL-fast | 0.008466666666666667 | 1.0 | ||
| LVL-fast | 0.007766666666666667 | 1.0 | ||
| LVL-fast | 0.013283333333333334 | 0.0 | ||
| LVL-fast | 0.0070999999999999995 | 0.5 | ||
| LVL-fast | 0.011033333333333334 | 0.6 | ||
| LVL-fast | 0.010966666666666668 | 0.6 | ||
| LVL-fast | 0.0056500000000000005 | 0.8 | ||
| LVL-fast | 0.013166666666666667 | 0.3 | ||
| LVL-fast | 0.006466666666666667 | 0.1 | ||
| LVL-fast | 0.007033333333333333 | 0.3 | ||
| LVL-fast | 0.008016666666666667 | 0.2 | ||
| LVL-fast | 0.010883333333333333 | 0.6 | ||
| LVL-fast | 0.005416666666666667 | 0.5 | ||
| LVL-fast | 0.010916666666666667 | 0.3 | ||
| LVL-fast | 0.00785 | 0.4 | ||
| LVL-fast | 0.009583333333333333 | 0.3 | ||
| LVL-fast | 0.008833333333333334 | 0.1 | ||
| LVL-fast | 0.009016666666666668 | 0.2 | ||
| LVL-fast | 0.01065 | 0.2 | ||
| LVL-fast | 0.009566666666666666 | 0.8 | ||
| LVL-fast | 0.005 | 0.4 | ||
| LVL-fast | 0.0085 | 0.7 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.013266666666666668 | 0.3 | ||
| LVL-fast | 0.005116666666666667 | 0.9 | ||
| LVL-fast | 0.010316666666666667 | 0.5 | ||
| LVL-fast | 0.0083 | 0.0 | ||
| LVL-fast | 0.012 | 1.0 | ||
| LVL-fast | 0.009783333333333333 | 0.8 | ||
| LVL-fast | 0.005383333333333334 | 0.4 | ||
| LVL-fast | 0.00825 | 0.8 | ||
| LVL-fast | 0.007033333333333333 | 1.0 | ||
| LVL-fast | 0.008133333333333333 | 0.0 | ||
| LVL-fast | 0.007833333333333333 | 0.7 | ||
| LVL-fast | 0.012116666666666666 | 1.0 | ||
| LVL-fast | 0.01005 | 0.4 | ||
| LVL-fast | 0.005233333333333334 | 0.6 | ||
| LVL-fast | 0.010866666666666667 | 0.5 | ||
| LVL-fast | 0.006966666666666666 | 0.5 | ||
| LVL-fast | 0.0121 | 0.0 | ||
| LVL-fast | 0.006983333333333333 | 0.3 | ||
| LVL-fast | 0.0060999999999999995 | 0.7 | ||
| LVL-fast | 0.010616666666666667 | 0.5 | ||
| LVL-fast | 0.006033333333333333 | 0.7 | ||
| LVL-fast | 0.008133333333333333 | 0.6 | ||
| LVL-fast | 0.011883333333333333 | 0.6 | ||
| LVL-fast | 0.010383333333333333 | 0.6 | ||
| LVL-fast | 0.0078000000000000005 | 0.6 | ||
| LVL-fast | 0.007733333333333333 | 1.0 | ||
| LVL-fast | 0.005883333333333333 | 0.3 | ||
| LVL-fast | 0.0072 | 0.2 | ||
| LVL-fast | 0.008283333333333334 | 0.9 | ||
| LVL-fast | 0.007533333333333334 | 0.3 | ||
| LVL-fast | 0.01065 | 0.8 | ||
| LVL-fast | 0.007083333333333333 | 0.4 | ||
| LVL-fast | 0.0052833333333333335 | 0.1 | ||
| LVL-fast | 0.009083333333333334 | 0.2 | ||
| LVL-fast | 0.005266666666666667 | 0.5 | ||
| LVL-fast | 0.009649999999999999 | 0.1 | ||
| LVL-fast | 0.0077 | 0.8 | ||
| LVL-fast | 0.00825 | 0.5 | ||
| LVL-fast | 0.009416666666666665 | 1.0 | ||
| LVL-fast | 0.007566666666666667 | 0.7 | ||
| LVL-fast | 0.012483333333333334 | 0.7 | ||
| LVL-fast | 0.00935 | 1.0 | ||
| LVL-fast | 0.006750000000000001 | 0.5 | ||
| LVL-fast | 0.005416666666666667 | 0.3 | ||
| LVL-fast | 0.008283333333333334 | 0.7 | ||
| LVL-fast | 0.007483333333333333 | 0.8 | ||
| LVL-fast | 0.01205 | 0.8 | ||
| LVL-fast | 0.011066666666666667 | 0.6 | ||
| LVL-fast | 0.0123 | 0.8 | ||
| LVL-fast | 0.013083333333333334 | 0.3 | ||
| LVL-fast | 0.0057 | 0.9 | ||
| LVL-fast | 0.006116666666666667 | 0.5 | ||
| LVL-fast | 0.013016666666666668 | 0.0 | ||
| LVL-fast | 0.00715 | 0.0 | ||
| LVL-fast | 0.006233333333333333 | 0.8 | ||
| LVL-fast | 0.008816666666666667 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 0.6 | ||
| LVL-fast | 0.008633333333333333 | 0.7 | ||
| LVL-fast | 0.00695 | 0.6 | ||
| LVL-fast | 0.009083333333333334 | 0.0 | ||
| LVL-fast | 0.0077 | 0.6 | ||
| LVL-fast | 0.01055 | 0.7 | ||
| LVL-fast | 0.007316666666666667 | 0.1 | ||
| LVL-fast | 0.009516666666666666 | 0.6 | ||
| LVL-fast | 0.005516666666666667 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 0.4 | ||
| LVL-fast | 0.005316666666666667 | 0.4 | ||
| LVL-fast | 0.011966666666666665 | 0.8 | ||
| LVL-fast | 0.008766666666666667 | 0.7 | ||
| LVL-fast | 0.00815 | 0.6 | ||
| LVL-fast | 0.012866666666666667 | 0.0 | ||
| LVL-fast | 0.01295 | 0.0 | ||
| LVL-fast | 0.009133333333333334 | 0.9 | ||
| LVL-fast | 0.007683333333333334 | 0.8 | ||
| LVL-fast | 0.006083333333333333 | 0.9 | 0.7777777777777778 | |
| LVL-fast | 0.007866666666666666 | 0.3 | ||
| LVL-fast | 0.006383333333333334 | 0.8 | ||
| LVL-fast | 0.0077 | 0.6 | ||
| LVL-fast | 0.005916666666666666 | 0.1 | ||
| LVL-fast | 0.009366666666666667 | 0.0 | ||
| LVL-fast | 0.007666666666666667 | 1.0 | ||
| LVL-fast | 0.013033333333333334 | 1.0 | ||
| LVL-fast | 0.011066666666666667 | 0.5 | ||
| LVL-fast | 0.011233333333333335 | 1.0 | ||
| LVL-fast | 0.006933333333333333 | 1.0 | ||
| LVL-fast | 0.013316666666666668 | 0.5 | ||
| LVL-fast | 0.00735 | 0.6 | ||
| LVL-fast | 0.008450000000000001 | 1.0 | ||
| LVL-fast | 0.007466666666666667 | 0.5 | ||
| LVL-fast | 0.005566666666666667 | 0.5 | ||
| LVL-fast | 0.005 | 1.0 | ||
| LVL-fast | 0.009649999999999999 | 0.2 | ||
| LVL-fast | 0.011066666666666667 | 0.9 | ||
| LVL-fast | 0.007266666666666667 | 0.4 | ||
| LVL-fast | 0.011433333333333334 | 0.3 | ||
| LVL-fast | 0.011816666666666666 | 0.7 | ||
| LVL-fast | 0.009766666666666667 | 0.5 | ||
| LVL-fast | 0.007816666666666666 | 0.7 | ||
| LVL-fast | 0.008766666666666667 | 0.3 | ||
| LVL-fast | 0.011216666666666668 | 0.5 | ||
| LVL-fast | 0.009000000000000001 | 0.6 | ||
| LVL-fast | 0.010016666666666667 | 0.0 | ||
| LVL-fast | 0.011833333333333333 | 0.3 | ||
| LVL-fast | 0.008833333333333334 | 0.1 | ||
| LVL-fast | 0.005983333333333333 | 0.6 | ||
| LVL-fast | 0.0051333333333333335 | 0.8 | ||
| LVL-fast | 0.007383333333333334 | 0.6 | ||
| LVL-fast | 0.007183333333333333 | 0.8 | ||
| LVL-fast | 0.0115 | 0.8 | ||
| LVL-fast | 0.005333333333333333 | 0.5 | ||
| LVL-fast | 0.007366666666666666 | 0.7 | ||
| LVL-fast | 0.00865 | 0.9 | ||
| LVL-fast | 0.005016666666666667 | 0.4 | ||
| LVL-fast | 0.009283333333333334 | 0.4 | ||
| LVL-fast | 0.0057333333333333325 | 0.1 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.009766666666666667 | 0.9 | ||
| LVL-fast | 0.01005 | 0.5 | ||
| LVL-fast | 0.009649999999999999 | 0.9 | ||
| LVL-fast | 0.005483333333333334 | 0.1 | ||
| LVL-fast | 0.009116666666666667 | 0.7 | ||
| LVL-fast | 0.010766666666666667 | 0.3 | ||
| LVL-fast | 0.008366666666666666 | 0.8 | ||
| LVL-fast | 0.012816666666666667 | 0.2 | ||
| LVL-fast | 0.01115 | 0.5 | ||
| LVL-fast | 0.013133333333333334 | 0.7 | ||
| LVL-fast | 0.00755 | 0.4 | ||
| LVL-fast | 0.006783333333333333 | 0.4 | ||
| LVL-fast | 0.006616666666666667 | 0.7 | ||
| LVL-fast | 0.007083333333333333 | 0.1 | ||
| LVL-fast | 0.005 | 0.1 | ||
| LVL-fast | 0.009833333333333333 | 0.9 | ||
| LVL-fast | 0.011683333333333332 | 0.2 | ||
| LVL-fast | 0.008366666666666666 | 0.5 | ||
| LVL-fast | 0.008616666666666667 | 0.7 | ||
| LVL-fast | 0.011949999999999999 | 0.3 | ||
| LVL-fast | 0.005366666666666667 | 0.2 | ||
| LVL-fast | 0.0064 | 0.7 | ||
| LVL-fast | 0.01055 | 0.3 | ||
| LVL-fast | 0.010233333333333334 | 0.7 | ||
| LVL-fast | 0.010933333333333333 | 0.1 | ||
| LVL-fast | 0.005433333333333333 | 0.8 | ||
| LVL-fast | 0.01015 | 1.0 | ||
| LVL-fast | 0.0104 | 1.0 | ||
| LVL-fast | 0.0062 | 0.4 | ||
| LVL-fast | 0.010166666666666666 | 0.3 | ||
| LVL-fast | 0.01175 | 0.6 | ||
| LVL-fast | 0.007216666666666666 | 0.3 | ||
| LVL-fast | 0.011066666666666667 | 0.6 | ||
| LVL-fast | 0.011933333333333332 | 0.6 | ||
| LVL-fast | 0.008433333333333333 | 1.0 | ||
| LVL-fast | 0.008233333333333334 | 0.5 | ||
| LVL-fast | 0.0104 | 0.9 | ||
| LVL-fast | 0.008166666666666666 | 0.9 | ||
| LVL-fast | 0.0082 | 0.3 | ||
| LVL-fast | 0.008716666666666668 | 0.0 | ||
| LVL-fast | 0.007783333333333334 | 0.0 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.005183333333333333 | 0.4 | ||
| LVL-fast | 0.010266666666666667 | 0.0 | 0.8888888888888888 | |
| LVL-fast | 0.007750000000000001 | 1.0 | ||
| LVL-fast | 0.01315 | 1.0 | ||
| LVL-fast | 0.008866666666666667 | 1.0 | ||
| LVL-fast | 0.010916666666666667 | 0.6 | ||
| LVL-fast | 0.00875 | 1.0 | ||
| LVL-fast | 0.011183333333333333 | 0.2 | ||
| LVL-fast | 0.008316666666666667 | 0.8 | ||
| LVL-fast | 0.00975 | 0.0 | ||
| LVL-fast | 0.0072 | 0.5 | ||
| LVL-fast | 0.0109 | 0.0 | ||
| LVL-fast | 0.012166666666666666 | 0.9 | ||
| LVL-fast | 0.010616666666666667 | 0.1 | ||
| LVL-fast | 0.011083333333333334 | 0.5 | ||
| LVL-fast | 0.00935 | 0.3 | ||
| LVL-fast | 0.0131 | 0.8 | ||
| LVL-fast | 0.007233333333333333 | 0.9 | ||
| LVL-fast | 0.0072833333333333335 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.1 | ||
| LVL-fast | 0.012883333333333333 | 0.1 | ||
| LVL-fast | 0.008333333333333333 | 1.0 | ||
| LVL-fast | 0.009216666666666668 | 0.0 | ||
| LVL-fast | 0.009683333333333332 | 0.2 | ||
| LVL-fast | 0.011666666666666665 | 0.1 | ||
| LVL-fast | 0.008883333333333333 | 1.0 | ||
| LVL-fast | 0.0106 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 0.0 | ||
| LVL-fast | 0.010066666666666666 | 1.0 | 1.0 | |
| LVL-fast | 0.010783333333333334 | 0.9 | ||
| LVL-fast | 0.0104 | 1.0 | 1.0 | |
| LVL-fast | 0.012266666666666667 | 0.6 | 1.0 | |
| LVL-fast | 0.007333333333333333 | 0.7 | ||
| LVL-fast | 0.0066 | 0.2 | ||
| LVL-fast | 0.006566666666666667 | 0.1 | ||
| LVL-fast | 0.012533333333333334 | 0.9 | 1.0 | |
| LVL-fast | 0.00645 | 0.7 | ||
| LVL-fast | 0.008083333333333333 | 0.3 | ||
| LVL-fast | 0.012833333333333334 | 0.6 | ||
| LVL-fast | 0.008766666666666667 | 0.6 | ||
| LVL-fast | 0.009000000000000001 | 0.9 | ||
| LVL-fast | 0.0070999999999999995 | 0.8 | ||
| LVL-fast | 0.0105 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.2 | 1.0 | |
| LVL-fast | 0.00655 | 0.8 | ||
| LVL-fast | 0.009000000000000001 | 0.4 | ||
| LVL-fast | 0.0076166666666666666 | 0.2 | ||
| LVL-fast | 0.0059499999999999996 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.3 | ||
| LVL-fast | 0.008 | 0.5 | ||
| LVL-fast | 0.008483333333333334 | 0.2 | ||
| LVL-fast | 0.0072833333333333335 | 0.0 | ||
| LVL-fast | 0.0058 | 1.0 | ||
| LVL-fast | 0.01055 | 1.0 | ||
| LVL-fast | 0.013250000000000001 | 0.7 | ||
| LVL-fast | 0.0054 | 1.0 | ||
| LVL-fast | 0.008816666666666667 | 1.0 | ||
| LVL-fast | 0.005683333333333334 | 0.8 | ||
| LVL-fast | 0.01105 | 1.0 | ||
| LVL-fast | 0.0089 | 0.8 | ||
| LVL-fast | 0.005216666666666666 | 0.7 | ||
| LVL-fast | 0.006183333333333333 | 0.0 | ||
| LVL-fast | 0.006066666666666666 | 0.1 | ||
| LVL-fast | 0.0067 | 1.0 | ||
| LVL-fast | 0.010683333333333333 | 0.5 | ||
| LVL-fast | 0.008983333333333334 | 0.5 | ||
| LVL-fast | 0.013116666666666667 | 0.0 | ||
| LVL-fast | 0.01175 | 0.2 | ||
| LVL-fast | 0.012466666666666666 | 0.2 | ||
| LVL-fast | 0.009066666666666667 | 0.2 | ||
| LVL-fast | 0.010966666666666668 | 0.1 | ||
| LVL-fast | 0.006016666666666667 | 0.5 | ||
| LVL-fast | 0.010733333333333334 | 0.8 | ||
| LVL-fast | 0.01065 | 0.8 | ||
| LVL-fast | 0.0054 | 0.3 | ||
| LVL-fast | 0.006166666666666667 | 0.1 | ||
| LVL-fast | 0.0088 | 0.7 | ||
| LVL-fast | 0.009066666666666667 | 0.5 | ||
| LVL-fast | 0.009033333333333334 | 0.9 | 0.8888888888888888 | |
| LVL-fast | 0.008066666666666666 | 1.0 | ||
| LVL-fast | 0.005666666666666667 | 0.4 | ||
| LVL-fast | 0.012883333333333333 | 0.9 | 1.0 | |
| LVL-fast | 0.005916666666666666 | 1.0 | ||
| LVL-fast | 0.005083333333333333 | 0.5 | ||
| LVL-fast | 0.01105 | 0.6 | ||
| LVL-fast | 0.009183333333333333 | 0.2 | ||
| LVL-fast | 0.006416666666666667 | 0.4 | ||
| LVL-fast | 0.0058 | 0.3 | ||
| LVL-fast | 0.013183333333333333 | 0.0 | ||
| LVL-fast | 0.009483333333333333 | 0.8 | ||
| LVL-fast | 0.01105 | 0.9 | ||
| LVL-fast | 0.0051333333333333335 | 0.6 | ||
| LVL-fast | 0.00695 | 0.6 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.005233333333333334 | 0.6 | ||
| LVL-fast | 0.013316666666666668 | 0.9 | ||
| LVL-fast | 0.010516666666666667 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 1.0 | ||
| LVL-fast | 0.011116666666666667 | 0.6 | ||
| LVL-fast | 0.0096 | 1.0 | ||
| LVL-fast | 0.006683333333333334 | 0.8 | ||
| LVL-fast | 0.007716666666666667 | 1.0 | ||
| LVL-fast | 0.010783333333333334 | 0.9 | ||
| LVL-fast | 0.009200000000000002 | 0.6 | ||
| LVL-fast | 0.005616666666666667 | 0.7 | ||
| LVL-fast | 0.012033333333333333 | 0.9 | ||
| LVL-fast | 0.005 | 0.7 | ||
| LVL-fast | 0.0089 | 0.6 | ||
| LVL-fast | 0.006783333333333333 | 0.9 | ||
| LVL-fast | 0.005666666666666667 | 1.0 | ||
| LVL-fast | 0.013166666666666667 | 0.8 | ||
| LVL-fast | 0.011633333333333332 | 0.9 | ||
| LVL-fast | 0.010883333333333333 | 0.7 | ||
| LVL-fast | 0.011583333333333333 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.7 | ||
| LVL-fast | 0.0066500000000000005 | 0.8 | ||
| LVL-fast | 0.0057 | 0.8 | ||
| LVL-fast | 0.007683333333333334 | 0.7 | ||
| LVL-fast | 0.00885 | 0.9 | ||
| LVL-fast | 0.011516666666666666 | 1.0 | ||
| LVL-fast | 0.008833333333333334 | 0.6 | ||
| LVL-fast | 0.012383333333333333 | 1.0 | ||
| LVL-fast | 0.0076500000000000005 | 0.8 | ||
| LVL-fast | 0.008066666666666666 | 1.0 | ||
| LVL-fast | 0.012516666666666667 | 0.9 | ||
| LVL-fast | 0.008133333333333333 | 0.6 | ||
| LVL-fast | 0.0052 | 0.9 | ||
| LVL-fast | 0.01235 | 0.8 | ||
| LVL-fast | 0.009366666666666667 | 0.9 | ||
| LVL-fast | 0.009966666666666667 | 0.6 | ||
| LVL-fast | 0.010716666666666668 | 1.0 | ||
| LVL-fast | 0.010133333333333333 | 0.9 | ||
| LVL-fast | 0.0063 | 0.8 | ||
| LVL-fast | 0.00535 | 0.9 | ||
| LVL-fast | 0.008616666666666667 | 0.8 | ||
| LVL-fast | 0.007633333333333334 | 0.7 | ||
| LVL-fast | 0.01315 | 0.7 | ||
| LVL-fast | 0.005166666666666667 | 0.8 | ||
| LVL-fast | 0.005116666666666667 | 0.8 | ||
| LVL-fast | 0.009083333333333334 | 0.7 | ||
| LVL-fast | 0.011466666666666665 | 0.8 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.009366666666666667 | 0.6 | ||
| LVL-fast | 0.009449999999999998 | 0.8 | ||
| LVL-fast | 0.011183333333333333 | 0.8 | ||
| LVL-fast | 0.007733333333333333 | 0.7 | ||
| LVL-fast | 0.009733333333333333 | 0.9 | ||
| LVL-fast | 0.0071333333333333335 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.6 | ||
| LVL-fast | 0.005533333333333334 | 1.0 | ||
| LVL-fast | 0.009616666666666666 | 0.7 | ||
| LVL-fast | 0.0076 | 0.7 | ||
| LVL-fast | 0.008266666666666667 | 0.9 | ||
| LVL-fast | 0.0059499999999999996 | 0.7 | ||
| LVL-fast | 0.012266666666666667 | 0.9 | ||
| LVL-fast | 0.007216666666666666 | 1.0 | ||
| LVL-fast | 0.008883333333333333 | 0.6 | ||
| LVL-fast | 0.008700000000000001 | 0.9 | ||
| LVL-fast | 0.0072 | 0.7 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.005333333333333333 | 1.0 | ||
| LVL-fast | 0.0105 | 0.6 | ||
| LVL-fast | 0.009516666666666666 | 0.7 | ||
| LVL-fast | 0.006166666666666667 | 0.6 | ||
| LVL-fast | 0.009866666666666666 | 0.8 | ||
| LVL-fast | 0.007733333333333333 | 1.0 | ||
| LVL-fast | 0.00955 | 1.0 | ||
| LVL-fast | 0.008516666666666667 | 0.6 | ||
| LVL-fast | 0.0116 | 0.8 | ||
| LVL-fast | 0.011533333333333333 | 0.9 | ||
| LVL-fast | 0.008183333333333332 | 0.6 | ||
| LVL-fast | 0.012766666666666667 | 0.7 | ||
| LVL-fast | 0.007083333333333333 | 0.7 | ||
| LVL-fast | 0.011983333333333334 | 0.6 | ||
| LVL-fast | 0.006066666666666666 | 0.6 | ||
| LVL-fast | 0.007233333333333333 | 0.9 | ||
| LVL-fast | 0.008366666666666666 | 1.0 | ||
| LVL-fast | 0.012016666666666667 | 0.6 | ||
| LVL-fast | 0.00805 | 1.0 | ||
| LVL-fast | 0.008216666666666667 | 0.7 | ||
| LVL-fast | 0.007566666666666667 | 0.7 | ||
| LVL-fast | 0.01 | 0.9 | ||
| LVL-fast | 0.010416666666666666 | 1.0 | ||
| LVL-fast | 0.006516666666666667 | 1.0 | ||
| LVL-fast | 0.00695 | 0.8 | 0.5555555555555556 | |
| LVL-fast | 0.011766666666666667 | 0.8 | 0.5555555555555556 | |
| LVL-fast | 0.007266666666666667 | 0.8 | ||
| LVL-fast | 0.0064 | 0.6 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.005016666666666667 | 0.8 | ||
| LVL-fast | 0.005216666666666666 | 0.9 | ||
| LVL-fast | 0.007216666666666666 | 0.7 | ||
| LVL-fast | 0.010116666666666666 | 1.0 | ||
| LVL-fast | 0.008916666666666666 | 0.9 | ||
| LVL-fast | 0.009266666666666668 | 1.0 | ||
| LVL-fast | 0.006333333333333333 | 0.7 | ||
| LVL-fast | 0.012166666666666666 | 1.0 | ||
| LVL-fast | 0.009783333333333333 | 0.9 | ||
| LVL-fast | 0.008216666666666667 | 0.8 | ||
| LVL-fast | 0.009433333333333332 | 0.7 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.0062 | 1.0 | ||
| LVL-fast | 0.007733333333333333 | 0.7 | ||
| LVL-fast | 0.010433333333333333 | 0.6 | ||
| LVL-fast | 0.008916666666666666 | 0.7 | ||
| LVL-fast | 0.010366666666666666 | 0.7 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.013116666666666667 | 0.8 | ||
| LVL-fast | 0.009333333333333334 | 0.8 | ||
| LVL-fast | 0.0131 | 1.0 | ||
| LVL-fast | 0.009083333333333334 | 0.7 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.00835 | 0.8 | ||
| LVL-fast | 0.01045 | 0.6 | ||
| LVL-fast | 0.011116666666666667 | 0.7 | ||
| LVL-fast | 0.012883333333333333 | 0.9 | ||
| LVL-fast | 0.006883333333333333 | 0.6 | ||
| LVL-fast | 0.01045 | 0.9 | ||
| LVL-fast | 0.005233333333333334 | 0.9 | ||
| LVL-fast | 0.011899999999999999 | 0.9 | ||
| LVL-fast | 0.008583333333333333 | 1.0 | ||
| LVL-fast | 0.011583333333333333 | 0.6 | ||
| LVL-fast | 0.006733333333333333 | 0.9 | ||
| LVL-fast | 0.005983333333333333 | 1.0 | ||
| LVL-fast | 0.008583333333333333 | 0.6 | ||
| LVL-fast | 0.00555 | 0.9 | ||
| LVL-fast | 0.005 | 1.0 | ||
| LVL-fast | 0.005983333333333333 | 0.7 | ||
| LVL-fast | 0.013116666666666667 | 0.9 | ||
| LVL-fast | 0.0057666666666666665 | 1.0 | ||
| LVL-fast | 0.010733333333333334 | 0.8 | ||
| LVL-fast | 0.0096 | 0.9 | ||
| LVL-fast | 0.010033333333333333 | 0.9 | ||
| LVL-fast | 0.006116666666666667 | 0.7 | ||
| LVL-fast | 0.012466666666666666 | 0.8 | ||
| LVL-fast | 0.009466666666666667 | 1.0 | ||
| LVL-fast | 0.011250000000000001 | 1.0 | ||
| LVL-fast | 0.010416666666666666 | 0.7 | ||
| LVL-fast | 0.0083 | 1.0 | ||
| LVL-fast | 0.0078000000000000005 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 0.7 | ||
| LVL-fast | 0.009883333333333333 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.0089 | 1.0 | ||
| LVL-fast | 0.013316666666666668 | 0.8 | ||
| LVL-fast | 0.012966666666666666 | 1.0 | ||
| LVL-fast | 0.01155 | 0.8 | ||
| LVL-fast | 0.009233333333333335 | 0.8 | ||
| LVL-fast | 0.011933333333333332 | 0.6 | ||
| LVL-fast | 0.006466666666666667 | 0.6 | ||
| LVL-fast | 0.008533333333333334 | 0.9 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.010533333333333334 | 0.8 | ||
| LVL-fast | 0.011116666666666667 | 1.0 | ||
| LVL-fast | 0.013016666666666668 | 0.6 | ||
| LVL-fast | 0.0053 | 0.9 | ||
| LVL-fast | 0.008183333333333332 | 0.7 | ||
| LVL-fast | 0.00955 | 0.8 | ||
| LVL-fast | 0.005866666666666667 | 0.9 | ||
| LVL-fast | 0.005166666666666667 | 0.6 | ||
| LVL-fast | 0.013216666666666666 | 0.9 | ||
| LVL-fast | 0.011899999999999999 | 0.8 | ||
| LVL-fast | 0.012 | 0.9 | ||
| LVL-fast | 0.011483333333333333 | 0.7 | ||
| LVL-fast | 0.005416666666666667 | 0.8 | ||
| LVL-fast | 0.007333333333333333 | 0.9 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.008933333333333333 | 0.9 | ||
| LVL-fast | 0.0070999999999999995 | 0.8 | ||
| LVL-fast | 0.012633333333333333 | 0.7 | ||
| LVL-fast | 0.011016666666666668 | 0.9 | ||
| LVL-fast | 0.005183333333333333 | 1.0 | ||
| LVL-fast | 0.01065 | 0.6 | ||
| LVL-fast | 0.007166666666666667 | 0.6 | ||
| LVL-fast | 0.00635 | 0.7 | ||
| LVL-fast | 0.006383333333333334 | 1.0 | ||
| LVL-fast | 0.010466666666666668 | 0.6 | ||
| LVL-fast | 0.011033333333333334 | 0.8 | ||
| LVL-fast | 0.008116666666666666 | 0.6 | ||
| LVL-fast | 0.005233333333333334 | 0.8 | ||
| LVL-fast | 0.011266666666666668 | 0.8 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.006333333333333333 | 1.0 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.007750000000000001 | 0.8 | ||
| LVL-fast | 0.00875 | 0.7 | ||
| LVL-fast | 0.007166666666666667 | 0.6 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.010566666666666667 | 0.7 | ||
| LVL-fast | 0.010216666666666667 | 0.8 | ||
| LVL-fast | 0.008516666666666667 | 0.6 | ||
| LVL-fast | 0.010733333333333334 | 1.0 | ||
| LVL-fast | 0.009466666666666667 | 0.8 | ||
| LVL-fast | 0.009916666666666666 | 0.9 | ||
| LVL-fast | 0.006466666666666667 | 0.7 | ||
| LVL-fast | 0.00935 | 0.6 | ||
| LVL-fast | 0.0057333333333333325 | 0.8 | ||
| LVL-fast | 0.00795 | 0.6 | ||
| LVL-fast | 0.0086 | 0.9 | ||
| LVL-fast | 0.0052 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.01315 | 0.9 | ||
| LVL-fast | 0.00915 | 1.0 | ||
| LVL-fast | 0.005333333333333333 | 0.9 | ||
| LVL-fast | 0.00805 | 0.7 | ||
| LVL-fast | 0.0076500000000000005 | 0.7 | ||
| LVL-fast | 0.0123 | 0.7 | ||
| LVL-fast | 0.005083333333333333 | 0.8 | ||
| LVL-fast | 0.0073 | 0.6 | ||
| LVL-fast | 0.013133333333333334 | 0.8 | ||
| LVL-fast | 0.0066500000000000005 | 0.8 | ||
| LVL-fast | 0.006683333333333334 | 0.8 | ||
| LVL-fast | 0.008683333333333333 | 0.9 | ||
| LVL-fast | 0.009016666666666668 | 0.7 | ||
| LVL-fast | 0.00615 | 0.9 | ||
| LVL-fast | 0.011949999999999999 | 0.6 | ||
| LVL-fast | 0.010983333333333335 | 1.0 | ||
| LVL-fast | 0.006466666666666667 | 0.9 | ||
| LVL-fast | 0.0129 | 0.8 | ||
| LVL-fast | 0.007866666666666666 | 0.7 | ||
| LVL-fast | 0.0083 | 1.0 | ||
| LVL-fast | 0.011083333333333334 | 0.9 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.012716666666666666 | 0.9 | ||
| LVL-fast | 0.01295 | 1.0 | ||
| LVL-fast | 0.012133333333333333 | 0.9 | ||
| LVL-fast | 0.008533333333333334 | 0.6 | ||
| LVL-fast | 0.008283333333333334 | 1.0 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.00785 | 0.6 | ||
| LVL-fast | 0.006566666666666667 | 1.0 | ||
| LVL-fast | 0.007500000000000001 | 0.6 | ||
| LVL-fast | 0.012833333333333334 | 0.7 | ||
| LVL-fast | 0.0123 | 0.8 | ||
| LVL-fast | 0.0114 | 1.0 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.01015 | 0.8 | ||
| LVL-fast | 0.005016666666666667 | 1.0 | ||
| LVL-fast | 0.011633333333333332 | 0.6 | ||
| LVL-fast | 0.0085 | 0.6 | ||
| LVL-fast | 0.007566666666666667 | 0.9 | ||
| LVL-fast | 0.0050999999999999995 | 0.8 | ||
| LVL-fast | 0.0101 | 1.0 | ||
| LVL-fast | 0.011633333333333332 | 0.9 | ||
| LVL-fast | 0.013133333333333334 | 1.0 | ||
| LVL-fast | 0.0062 | 0.7 | ||
| LVL-fast | 0.011433333333333334 | 1.0 | ||
| LVL-fast | 0.010083333333333333 | 0.8 | ||
| LVL-fast | 0.00695 | 0.8 | ||
| LVL-fast | 0.012 | 0.7 | ||
| LVL-fast | 0.00555 | 0.9 | ||
| LVL-fast | 0.012166666666666666 | 0.9 | ||
| LVL-fast | 0.010533333333333334 | 1.0 | ||
| LVL-fast | 0.010816666666666667 | 0.8 | ||
| LVL-fast | 0.0060999999999999995 | 0.6 | ||
| LVL-fast | 0.0128 | 1.0 | ||
| LVL-fast | 0.006516666666666667 | 1.0 | ||
| LVL-fast | 0.011233333333333335 | 1.0 | ||
| LVL-fast | 0.009866666666666666 | 0.9 | ||
| LVL-fast | 0.0062833333333333335 | 0.6 | ||
| LVL-fast | 0.007500000000000001 | 0.7 | ||
| LVL-fast | 0.00645 | 1.0 | ||
| LVL-fast | 0.010283333333333334 | 0.6 | ||
| LVL-fast | 0.00855 | 0.9 | ||
| LVL-fast | 0.0055000000000000005 | 1.0 | ||
| LVL-fast | 0.009566666666666666 | 0.8 | ||
| LVL-fast | 0.01065 | 1.0 | ||
| LVL-fast | 0.008316666666666667 | 0.9 | ||
| LVL-fast | 0.005083333333333333 | 0.8 | ||
| LVL-fast | 0.007933333333333332 | 0.7 | ||
| LVL-fast | 0.012783333333333334 | 0.7 | ||
| LVL-fast | 0.007783333333333334 | 1.0 | ||
| LVL-fast | 0.006583333333333333 | 0.6 | ||
| LVL-fast | 0.007083333333333333 | 0.7 | ||
| LVL-fast | 0.009016666666666668 | 0.9 | ||
| LVL-fast | 0.007383333333333334 | 1.0 | ||
| LVL-fast | 0.0085 | 0.8 | ||
| LVL-fast | 0.01175 | 0.9 | ||
| LVL-fast | 0.0062 | 0.9 | ||
| LVL-fast | 0.012216666666666666 | 0.9 | ||
| LVL-fast | 0.012266666666666667 | 0.7 | ||
| LVL-fast | 0.009966666666666667 | 1.0 | ||
| LVL-fast | 0.005849999999999999 | 0.6 | ||
| LVL-fast | 0.007733333333333333 | 0.9 | ||
| LVL-fast | 0.010383333333333333 | 0.8 | ||
| LVL-fast | 0.008533333333333334 | 0.6 | ||
| LVL-fast | 0.006016666666666667 | 0.9 | ||
| LVL-fast | 0.00695 | 1.0 | ||
| LVL-fast | 0.011466666666666665 | 0.9 | ||
| LVL-fast | 0.010716666666666668 | 0.9 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | ||
| LVL-fast | 0.007633333333333334 | 0.9 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.005033333333333333 | 0.9 | ||
| LVL-fast | 0.007666666666666667 | 0.6 | ||
| LVL-fast | 0.00505 | 0.9 | ||
| LVL-fast | 0.008016666666666667 | 1.0 | ||
| LVL-fast | 0.006666666666666667 | 1.0 | ||
| LVL-fast | 0.007666666666666667 | 0.7 | ||
| LVL-fast | 0.005316666666666667 | 0.9 | ||
| LVL-fast | 0.009899999999999999 | 0.7 | ||
| LVL-fast | 0.01095 | 0.9 | ||
| LVL-fast | 0.0081 | 0.9 | ||
| LVL-fast | 0.006233333333333333 | 0.7 | ||
| LVL-fast | 0.012383333333333333 | 1.0 | ||
| LVL-fast | 0.0101 | 0.6 | ||
| LVL-fast | 0.011866666666666666 | 0.8 | ||
| LVL-fast | 0.00815 | 0.8 | ||
| LVL-fast | 0.01035 | 0.8 | ||
| LVL-fast | 0.011649999999999999 | 0.7 | ||
| LVL-fast | 0.009416666666666665 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.7 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.0056500000000000005 | 1.0 | ||
| LVL-fast | 0.0063 | 0.9 | ||
| LVL-fast | 0.0126 | 0.6 | ||
| LVL-fast | 0.007633333333333334 | 0.8 | ||
| LVL-fast | 0.008 | 0.6 | ||
| LVL-fast | 0.005533333333333334 | 0.7 | ||
| LVL-fast | 0.01095 | 1.0 | ||
| LVL-fast | 0.0072833333333333335 | 0.8 | ||
| LVL-fast | 0.0115 | 0.7 | ||
| LVL-fast | 0.011899999999999999 | 0.8 | ||
| LVL-fast | 0.00915 | 1.0 | ||
| LVL-fast | 0.009616666666666666 | 0.9 | ||
| LVL-fast | 0.0115 | 0.7 | ||
| LVL-fast | 0.005616666666666667 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.9 | ||
| LVL-fast | 0.0058 | 0.8 | ||
| LVL-fast | 0.00645 | 0.6 | ||
| LVL-fast | 0.010466666666666668 | 0.8 | ||
| LVL-fast | 0.0077 | 0.9 | ||
| LVL-fast | 0.00755 | 0.8 | ||
| LVL-fast | 0.005266666666666667 | 1.0 | ||
| LVL-fast | 0.009516666666666666 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.9 | ||
| LVL-fast | 0.009566666666666666 | 1.0 | ||
| LVL-fast | 0.011250000000000001 | 0.6 | ||
| LVL-fast | 0.005366666666666667 | 0.9 | ||
| LVL-fast | 0.006783333333333333 | 0.9 | ||
| LVL-fast | 0.0132 | 1.0 | ||
| LVL-fast | 0.005483333333333334 | 0.9 | ||
| LVL-fast | 0.007766666666666667 | 1.0 | ||
| LVL-fast | 0.009916666666666666 | 1.0 | ||
| LVL-fast | 0.010166666666666666 | 0.8 | ||
| LVL-fast | 0.005033333333333333 | 0.9 | ||
| LVL-fast | 0.006066666666666666 | 0.6 | ||
| LVL-fast | 0.010116666666666666 | 0.7 | ||
| LVL-fast | 0.0086 | 0.7 | ||
| LVL-fast | 0.01265 | 0.6 | ||
| LVL-fast | 0.01225 | 0.7 | ||
| LVL-fast | 0.009416666666666665 | 0.6 | ||
| LVL-fast | 0.0062 | 0.6 | ||
| LVL-fast | 0.010533333333333334 | 0.7 | ||
| LVL-fast | 0.007416666666666667 | 0.7 | ||
| LVL-fast | 0.011416666666666667 | 1.0 | ||
| LVL-fast | 0.009033333333333334 | 0.8 | ||
| LVL-fast | 0.00905 | 1.0 | ||
| LVL-fast | 0.0052 | 0.9 | ||
| LVL-fast | 0.011466666666666665 | 0.8 | ||
| LVL-fast | 0.0129 | 0.7 | ||
| LVL-fast | 0.00985 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 1.0 | ||
| LVL-fast | 0.00545 | 0.8 | ||
| LVL-fast | 0.010366666666666666 | 0.6 | ||
| LVL-fast | 0.007533333333333334 | 1.0 | ||
| LVL-fast | 0.007783333333333334 | 1.0 | ||
| LVL-fast | 0.006316666666666667 | 0.7 | ||
| LVL-fast | 0.011583333333333333 | 0.9 | ||
| LVL-fast | 0.006849999999999999 | 0.9 | ||
| LVL-fast | 0.006116666666666667 | 0.9 | ||
| LVL-fast | 0.0073 | 0.9 | ||
| LVL-fast | 0.012483333333333334 | 0.9 | ||
| LVL-fast | 0.005166666666666667 | 0.7 | ||
| LVL-fast | 0.006733333333333333 | 0.6 | ||
| LVL-fast | 0.005116666666666667 | 0.7 | ||
| LVL-fast | 0.01135 | 0.7 | ||
| LVL-fast | 0.013283333333333334 | 0.8 | ||
| LVL-fast | 0.011783333333333333 | 0.6 | ||
| LVL-fast | 0.009583333333333333 | 0.8 | ||
| LVL-fast | 0.0123 | 1.0 | ||
| LVL-fast | 0.008916666666666666 | 0.7 | ||
| LVL-fast | 0.0126 | 1.0 | ||
| LVL-fast | 0.00635 | 0.9 | ||
| LVL-fast | 0.011216666666666668 | 0.7 | ||
| LVL-fast | 0.006416666666666667 | 1.0 | ||
| LVL-fast | 0.012366666666666666 | 0.9 | ||
| LVL-fast | 0.0082 | 1.0 | ||
| LVL-fast | 0.011183333333333333 | 0.8 | ||
| LVL-fast | 0.011416666666666667 | 0.6 | ||
| LVL-fast | 0.010866666666666667 | 0.8 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.00745 | 1.0 | ||
| LVL-fast | 0.012733333333333334 | 0.9 | ||
| LVL-fast | 0.0105 | 1.0 | ||
| LVL-fast | 0.0053 | 0.6 | ||
| LVL-fast | 0.005833333333333333 | 0.7 | ||
| LVL-fast | 0.010816666666666667 | 0.7 | ||
| LVL-fast | 0.006516666666666667 | 1.0 | ||
| LVL-fast | 0.009949999999999999 | 0.8 | ||
| LVL-fast | 0.008416666666666666 | 0.8 | ||
| LVL-fast | 0.007066666666666666 | 0.8 | ||
| LVL-fast | 0.00655 | 1.0 | ||
| LVL-fast | 0.013016666666666668 | 1.0 | ||
| LVL-fast | 0.012016666666666667 | 0.7 | ||
| LVL-fast | 0.005 | 0.7 | ||
| LVL-fast | 0.010316666666666667 | 0.7 | ||
| LVL-fast | 0.01285 | 0.8 | ||
| LVL-fast | 0.005933333333333333 | 0.8 | ||
| LVL-fast | 0.011516666666666666 | 0.8 | ||
| LVL-fast | 0.012116666666666666 | 0.6 | ||
| LVL-fast | 0.0059499999999999996 | 1.0 | ||
| LVL-fast | 0.012750000000000001 | 0.9 | ||
| LVL-fast | 0.0059 | 1.0 | ||
| LVL-fast | 0.01185 | 0.7 | ||
| LVL-fast | 0.0051333333333333335 | 0.6 | ||
| LVL-fast | 0.007750000000000001 | 0.7 | ||
| LVL-fast | 0.005383333333333334 | 0.9 | ||
| LVL-fast | 0.00515 | 1.0 | ||
| LVL-fast | 0.009266666666666668 | 0.9 | ||
| LVL-fast | 0.00745 | 0.6 | ||
| LVL-fast | 0.0083 | 0.6 | ||
| LVL-fast | 0.010816666666666667 | 0.6 | ||
| LVL-fast | 0.010683333333333333 | 0.6 | ||
| LVL-fast | 0.010816666666666667 | 0.9 | ||
| LVL-fast | 0.013266666666666668 | 0.7 | ||
| LVL-fast | 0.011983333333333334 | 1.0 | ||
| LVL-fast | 0.009899999999999999 | 0.8 | ||
| LVL-fast | 0.007466666666666667 | 0.9 | ||
| LVL-fast | 0.012466666666666666 | 1.0 | ||
| LVL-fast | 0.009766666666666667 | 0.6 | ||
| LVL-fast | 0.008566666666666667 | 0.9 | ||
| LVL-fast | 0.008433333333333333 | 0.6 | ||
| LVL-fast | 0.006833333333333333 | 0.6 | ||
| LVL-fast | 0.0064 | 0.7 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.009216666666666668 | 0.7 | ||
| LVL-fast | 0.009300000000000001 | 1.0 | ||
| LVL-fast | 0.010066666666666666 | 0.6 | ||
| LVL-fast | 0.0073 | 1.0 | ||
| LVL-fast | 0.01285 | 0.8 | ||
| LVL-fast | 0.008383333333333333 | 1.0 | ||
| LVL-fast | 0.009266666666666668 | 0.6 | ||
| LVL-fast | 0.00855 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 1.0 | ||
| LVL-fast | 0.009083333333333334 | 0.8 | ||
| LVL-fast | 0.0111 | 0.7 | ||
| LVL-fast | 0.005566666666666667 | 0.6 | ||
| LVL-fast | 0.009516666666666666 | 0.6 | ||
| LVL-fast | 0.0072 | 1.0 | ||
| LVL-fast | 0.00985 | 0.9 | ||
| LVL-fast | 0.009166666666666667 | 0.7 | ||
| LVL-fast | 0.007316666666666667 | 0.6 | ||
| LVL-fast | 0.005583333333333333 | 1.0 | ||
| LVL-fast | 0.007916666666666666 | 0.7 | ||
| LVL-fast | 0.006333333333333333 | 1.0 | ||
| LVL-fast | 0.012816666666666667 | 0.6 | ||
| LVL-fast | 0.008333333333333333 | 0.6 | ||
| LVL-fast | 0.013033333333333334 | 0.6 | ||
| LVL-fast | 0.0055000000000000005 | 0.7 | ||
| LVL-fast | 0.010916666666666667 | 0.9 | ||
| LVL-fast | 0.007583333333333333 | 0.8 | ||
| LVL-fast | 0.0123 | 1.0 | ||
| LVL-fast | 0.0132 | 0.8 | ||
| LVL-fast | 0.011416666666666667 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 0.8 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.0081 | 1.0 | ||
| LVL-fast | 0.010750000000000001 | 0.7 | ||
| LVL-fast | 0.0060999999999999995 | 0.7 | ||
| LVL-fast | 0.013133333333333334 | 0.6 | ||
| LVL-fast | 0.0054 | 0.7 | ||
| LVL-fast | 0.0055000000000000005 | 0.9 | ||
| LVL-fast | 0.0104 | 1.0 | ||
| LVL-fast | 0.006516666666666667 | 0.7 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.010016666666666667 | 0.7 | ||
| LVL-fast | 0.0104 | 0.6 | ||
| LVL-fast | 0.009983333333333334 | 0.8 | ||
| LVL-fast | 0.012366666666666666 | 0.8 | ||
| LVL-fast | 0.00975 | 0.6 | ||
| LVL-fast | 0.009333333333333334 | 0.9 | ||
| LVL-fast | 0.009183333333333333 | 1.0 | ||
| LVL-fast | 0.0054666666666666665 | 0.8 | ||
| LVL-fast | 0.013266666666666668 | 1.0 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.011300000000000001 | 0.9 | ||
| LVL-fast | 0.006066666666666666 | 0.7 | ||
| LVL-fast | 0.006366666666666667 | 0.7 | ||
| LVL-fast | 0.010816666666666667 | 1.0 | ||
| LVL-fast | 0.0121 | 0.9 | ||
| LVL-fast | 0.0109 | 0.9 | ||
| LVL-fast | 0.012833333333333334 | 0.7 | ||
| LVL-fast | 0.008216666666666667 | 0.9 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.00545 | 0.9 | ||
| LVL-fast | 0.012766666666666667 | 0.9 | ||
| LVL-fast | 0.012983333333333335 | 0.8 | ||
| LVL-fast | 0.009983333333333334 | 0.6 | ||
| LVL-fast | 0.008566666666666667 | 0.7 | ||
| LVL-fast | 0.007566666666666667 | 0.6 | ||
| LVL-fast | 0.005016666666666667 | 0.7 | ||
| LVL-fast | 0.0061333333333333335 | 0.8 | ||
| LVL-fast | 0.011383333333333334 | 0.6 | ||
| LVL-fast | 0.011083333333333334 | 0.9 | ||
| LVL-fast | 0.008383333333333333 | 0.9 | ||
| LVL-fast | 0.0076 | 0.9 | ||
| LVL-fast | 0.010983333333333335 | 0.9 | ||
| LVL-fast | 0.007833333333333333 | 1.0 | ||
| LVL-fast | 0.007216666666666666 | 0.9 | ||
| LVL-fast | 0.013083333333333334 | 0.8 | ||
| LVL-fast | 0.01105 | 0.6 | ||
| LVL-fast | 0.0073 | 1.0 | ||
| LVL-fast | 0.012750000000000001 | 0.8 | ||
| LVL-fast | 0.010816666666666667 | 0.7 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.01235 | 0.8 | ||
| LVL-fast | 0.0121 | 1.0 | ||
| LVL-fast | 0.005116666666666667 | 1.0 | ||
| LVL-fast | 0.012116666666666666 | 0.6 | ||
| LVL-fast | 0.005816666666666666 | 0.7 | ||
| LVL-fast | 0.010683333333333333 | 0.6 | ||
| LVL-fast | 0.007933333333333332 | 0.6 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.006166666666666667 | 0.6 | ||
| LVL-fast | 0.005616666666666667 | 0.9 | ||
| LVL-fast | 0.006466666666666667 | 1.0 | ||
| LVL-fast | 0.00805 | 0.8 | ||
| LVL-fast | 0.005316666666666667 | 0.6 | ||
| LVL-fast | 0.01135 | 0.8 | ||
| LVL-fast | 0.01065 | 1.0 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.010083333333333333 | 0.7 | ||
| LVL-fast | 0.0059499999999999996 | 0.7 | ||
| LVL-fast | 0.0070999999999999995 | 0.8 | ||
| LVL-fast | 0.012216666666666666 | 0.7 | ||
| LVL-fast | 0.011716666666666665 | 0.7 | ||
| LVL-fast | 0.008700000000000001 | 1.0 | ||
| LVL-fast | 0.013083333333333334 | 0.8 | ||
| LVL-fast | 0.008333333333333333 | 0.8 | ||
| LVL-fast | 0.010483333333333334 | 1.0 | ||
| LVL-fast | 0.0066500000000000005 | 1.0 | ||
| LVL-fast | 0.011166666666666667 | 1.0 | ||
| LVL-fast | 0.005416666666666667 | 1.0 | ||
| LVL-fast | 0.012883333333333333 | 0.6 | ||
| LVL-fast | 0.009666666666666665 | 1.0 | ||
| LVL-fast | 0.008866666666666667 | 0.9 | ||
| LVL-fast | 0.0054 | 1.0 | ||
| LVL-fast | 0.0104 | 0.8 | ||
| LVL-fast | 0.00735 | 1.0 | ||
| LVL-fast | 0.008433333333333333 | 0.7 | ||
| LVL-fast | 0.012366666666666666 | 0.7 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.011533333333333333 | 0.6 | ||
| LVL-fast | 0.009183333333333333 | 0.8 | ||
| LVL-fast | 0.0076166666666666666 | 0.8 | ||
| LVL-fast | 0.008450000000000001 | 1.0 | ||
| LVL-fast | 0.012133333333333333 | 0.8 | ||
| LVL-fast | 0.005616666666666667 | 0.7 | ||
| LVL-fast | 0.012516666666666667 | 1.0 | ||
| LVL-fast | 0.00615 | 1.0 | ||
| LVL-fast | 0.007766666666666667 | 0.7 | ||
| LVL-fast | 0.0083 | 0.9 | ||
| LVL-fast | 0.0067 | 1.0 | ||
| LVL-fast | 0.010583333333333333 | 0.8 | ||
| LVL-fast | 0.008216666666666667 | 0.9 | ||
| LVL-fast | 0.013250000000000001 | 0.8 | ||
| LVL-fast | 0.006366666666666667 | 1.0 | ||
| LVL-fast | 0.006816666666666666 | 0.7 | ||
| LVL-fast | 0.013300000000000001 | 0.7 | ||
| LVL-fast | 0.01225 | 0.8 | ||
| LVL-fast | 0.00855 | 0.7 | ||
| LVL-fast | 0.007966666666666667 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 0.8 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.013016666666666668 | 0.9 | ||
| LVL-fast | 0.011383333333333334 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 0.6 | ||
| LVL-fast | 0.0124 | 1.0 | ||
| LVL-fast | 0.00515 | 1.0 | ||
| LVL-fast | 0.010366666666666666 | 0.9 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.011300000000000001 | 1.0 | ||
| LVL-fast | 0.00655 | 0.7 | ||
| LVL-fast | 0.0058 | 0.9 | ||
| LVL-fast | 0.00885 | 1.0 | ||
| LVL-fast | 0.007766666666666667 | 0.8 | ||
| LVL-fast | 0.009016666666666668 | 1.0 | ||
| LVL-fast | 0.00935 | 0.9 | ||
| LVL-fast | 0.008183333333333332 | 0.7 | ||
| LVL-fast | 0.008666666666666666 | 1.0 | ||
| LVL-fast | 0.009449999999999998 | 0.8 | ||
| LVL-fast | 0.0068 | 0.6 | ||
| LVL-fast | 0.010783333333333334 | 0.7 | ||
| LVL-fast | 0.005066666666666666 | 0.9 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.00865 | 0.8 | ||
| LVL-fast | 0.005616666666666667 | 0.7 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.011766666666666667 | 0.7 | ||
| LVL-fast | 0.00955 | 0.9 | ||
| LVL-fast | 0.006833333333333333 | 0.7 | ||
| LVL-fast | 0.0082 | 0.8 | ||
| LVL-fast | 0.005583333333333333 | 0.9 | ||
| LVL-fast | 0.008950000000000001 | 0.9 | ||
| LVL-fast | 0.008083333333333333 | 0.6 | ||
| LVL-fast | 0.009133333333333334 | 0.6 | ||
| LVL-fast | 0.011250000000000001 | 0.9 | ||
| LVL-fast | 0.006483333333333333 | 0.7 | ||
| LVL-fast | 0.006716666666666667 | 1.0 | ||
| LVL-fast | 0.011300000000000001 | 1.0 | ||
| LVL-fast | 0.011333333333333334 | 0.8 | ||
| LVL-fast | 0.01315 | 0.9 | ||
| LVL-fast | 0.011866666666666666 | 0.8 | ||
| LVL-fast | 0.01255 | 0.8 | ||
| LVL-fast | 0.012366666666666666 | 0.6 | ||
| LVL-fast | 0.01055 | 0.9 | ||
| LVL-fast | 0.012966666666666666 | 0.6 | ||
| LVL-fast | 0.007366666666666666 | 1.0 | ||
| LVL-fast | 0.011683333333333332 | 1.0 | ||
| LVL-fast | 0.005333333333333333 | 0.8 | ||
| LVL-fast | 0.010466666666666668 | 0.8 | ||
| LVL-fast | 0.012683333333333333 | 0.7 | ||
| LVL-fast | 0.012866666666666667 | 1.0 | ||
| LVL-fast | 0.007633333333333334 | 0.6 | ||
| LVL-fast | 0.007933333333333332 | 0.8 | ||
| LVL-fast | 0.006683333333333334 | 0.8 | ||
| LVL-fast | 0.009000000000000001 | 1.0 | ||
| LVL-fast | 0.0115 | 0.7 | ||
| LVL-fast | 0.007483333333333333 | 0.9 | ||
| LVL-fast | 0.009333333333333334 | 0.8 | ||
| LVL-fast | 0.0096 | 1.0 | ||
| LVL-fast | 0.006083333333333333 | 0.8 | ||
| LVL-fast | 0.0059 | 0.8 | ||
| LVL-fast | 0.012133333333333333 | 0.8 | ||
| LVL-fast | 0.012083333333333333 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.6 | ||
| LVL-fast | 0.007333333333333333 | 0.9 | ||
| LVL-fast | 0.011183333333333333 | 0.7 | ||
| LVL-fast | 0.0131 | 0.9 | ||
| LVL-fast | 0.01315 | 0.7 | ||
| LVL-fast | 0.0082 | 0.9 | ||
| LVL-fast | 0.008966666666666668 | 1.0 | ||
| LVL-fast | 0.006183333333333333 | 1.0 | ||
| LVL-fast | 0.0069166666666666664 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 0.6 | ||
| LVL-fast | 0.010233333333333334 | 0.6 | ||
| LVL-fast | 0.008316666666666667 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 0.7 | ||
| LVL-fast | 0.011816666666666666 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.7 | ||
| LVL-fast | 0.005 | 1.0 | ||
| LVL-fast | 0.005683333333333334 | 0.7 | ||
| LVL-fast | 0.00825 | 0.7 | ||
| LVL-fast | 0.0108 | 0.8 | ||
| LVL-fast | 0.006166666666666667 | 1.0 | ||
| LVL-fast | 0.009716666666666667 | 0.7 | ||
| LVL-fast | 0.012816666666666667 | 0.7 | ||
| LVL-fast | 0.00525 | 0.8 | ||
| LVL-fast | 0.0129 | 0.8 | ||
| LVL-fast | 0.0062833333333333335 | 0.7 | ||
| LVL-fast | 0.007816666666666666 | 0.6 | ||
| LVL-fast | 0.0127 | 0.6 | ||
| LVL-fast | 0.011949999999999999 | 0.9 | ||
| LVL-fast | 0.011883333333333333 | 0.9 | ||
| LVL-fast | 0.008133333333333333 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.9 | ||
| LVL-fast | 0.008066666666666666 | 0.9 | ||
| LVL-fast | 0.006016666666666667 | 1.0 | ||
| LVL-fast | 0.00635 | 0.7 | ||
| LVL-fast | 0.00615 | 0.6 | ||
| LVL-fast | 0.011833333333333333 | 0.9 | ||
| LVL-fast | 0.013066666666666667 | 0.8 | ||
| LVL-fast | 0.010616666666666667 | 0.6 | ||
| LVL-fast | 0.007516666666666667 | 0.6 | ||
| LVL-fast | 0.006466666666666667 | 0.8 | ||
| LVL-fast | 0.006816666666666666 | 0.7 | ||
| LVL-fast | 0.0095 | 0.8 | ||
| LVL-fast | 0.010233333333333334 | 0.8 | ||
| LVL-fast | 0.01145 | 0.9 | ||
| LVL-fast | 0.012816666666666667 | 0.7 | ||
| LVL-fast | 0.008283333333333334 | 0.9 | ||
| LVL-fast | 0.006783333333333333 | 0.8 | ||
| LVL-fast | 0.0062 | 0.9 | ||
| LVL-fast | 0.009233333333333335 | 0.7 | ||
| LVL-fast | 0.011766666666666667 | 0.6 | ||
| LVL-fast | 0.013033333333333334 | 0.8 | ||
| LVL-fast | 0.011583333333333333 | 1.0 | ||
| LVL-fast | 0.005416666666666667 | 0.6 | ||
| LVL-fast | 0.0064 | 0.6 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.007 | 0.6 | ||
| LVL-fast | 0.005383333333333334 | 0.6 | ||
| LVL-fast | 0.0129 | 0.6 | ||
| LVL-fast | 0.006750000000000001 | 0.7 | ||
| LVL-fast | 0.011083333333333334 | 0.8 | ||
| LVL-fast | 0.010933333333333333 | 0.8 | ||
| LVL-fast | 0.012883333333333333 | 1.0 | ||
| LVL-fast | 0.0052833333333333335 | 0.8 | ||
| LVL-fast | 0.009233333333333335 | 0.9 | ||
| LVL-fast | 0.01105 | 0.6 | ||
| LVL-fast | 0.01145 | 1.0 | ||
| LVL-fast | 0.007833333333333333 | 0.9 | ||
| LVL-fast | 0.008933333333333333 | 0.6 | ||
| LVL-fast | 0.005583333333333333 | 0.8 | ||
| LVL-fast | 0.0103 | 0.9 | ||
| LVL-fast | 0.011866666666666666 | 0.7 | ||
| LVL-fast | 0.013300000000000001 | 0.9 | ||
| LVL-fast | 0.011000000000000001 | 0.9 | ||
| LVL-fast | 0.008583333333333333 | 0.9 | ||
| LVL-fast | 0.008683333333333333 | 0.9 | ||
| LVL-fast | 0.011383333333333334 | 0.8 | ||
| LVL-fast | 0.008766666666666667 | 0.7 | ||
| LVL-fast | 0.009399999999999999 | 0.7 | ||
| LVL-fast | 0.006266666666666667 | 0.6 | ||
| LVL-fast | 0.010266666666666667 | 1.0 | ||
| LVL-fast | 0.01295 | 1.0 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.006333333333333333 | 0.9 | ||
| LVL-fast | 0.0059 | 0.6 | ||
| LVL-fast | 0.01055 | 0.7 | ||
| LVL-fast | 0.0069 | 0.6 | ||
| LVL-fast | 0.0103 | 0.9 | ||
| LVL-fast | 0.012983333333333335 | 1.0 | ||
| LVL-fast | 0.008866666666666667 | 1.0 | ||
| LVL-fast | 0.010616666666666667 | 0.6 | ||
| LVL-fast | 0.009699999999999999 | 0.6 | ||
| LVL-fast | 0.007216666666666666 | 0.6 | ||
| LVL-fast | 0.010933333333333333 | 0.7 | ||
| LVL-fast | 0.01265 | 0.8 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.005066666666666666 | 0.9 | ||
| LVL-fast | 0.011966666666666665 | 0.9 | ||
| LVL-fast | 0.005683333333333334 | 0.9 | ||
| LVL-fast | 0.007866666666666666 | 0.6 | ||
| LVL-fast | 0.00835 | 0.9 | ||
| LVL-fast | 0.00655 | 0.9 | ||
| LVL-fast | 0.0126 | 0.8 | ||
| LVL-fast | 0.006083333333333333 | 0.8 | ||
| LVL-fast | 0.007833333333333333 | 0.9 | ||
| LVL-fast | 0.011116666666666667 | 0.6 | ||
| LVL-fast | 0.011666666666666665 | 0.9 | ||
| LVL-fast | 0.010133333333333333 | 0.6 | ||
| LVL-fast | 0.009649999999999999 | 0.8 | ||
| LVL-fast | 0.00745 | 0.8 | ||
| LVL-fast | 0.007666666666666667 | 0.6 | ||
| LVL-fast | 0.0074333333333333335 | 1.0 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.008033333333333333 | 0.6 | ||
| LVL-fast | 0.005716666666666667 | 0.7 | ||
| LVL-fast | 0.010483333333333334 | 0.9 | ||
| LVL-fast | 0.00875 | 0.8 | ||
| LVL-fast | 0.007833333333333333 | 0.9 | ||
| LVL-fast | 0.010583333333333333 | 0.9 | ||
| LVL-fast | 0.011883333333333333 | 0.8 | ||
| LVL-fast | 0.006616666666666667 | 0.6 | ||
| LVL-fast | 0.007316666666666667 | 0.8 | ||
| LVL-fast | 0.009466666666666667 | 0.8 | ||
| LVL-fast | 0.01025 | 0.7 | ||
| LVL-fast | 0.00635 | 0.9 | ||
| LVL-fast | 0.0054666666666666665 | 0.9 | ||
| LVL-fast | 0.006033333333333333 | 1.0 | ||
| LVL-fast | 0.0111 | 0.9 | ||
| LVL-fast | 0.007833333333333333 | 1.0 | ||
| LVL-fast | 0.005233333333333334 | 0.7 | ||
| LVL-fast | 0.009833333333333333 | 0.7 | ||
| LVL-fast | 0.006333333333333333 | 0.9 | ||
| LVL-fast | 0.010983333333333335 | 0.6 | ||
| LVL-fast | 0.007983333333333334 | 0.9 | ||
| LVL-fast | 0.011716666666666665 | 0.8 | ||
| LVL-fast | 0.009366666666666667 | 0.7 | ||
| LVL-fast | 0.006883333333333333 | 0.6 | ||
| LVL-fast | 0.009949999999999999 | 0.7 | ||
| LVL-fast | 0.006750000000000001 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.8 | ||
| LVL-fast | 0.010033333333333333 | 0.6 | ||
| LVL-fast | 0.013266666666666668 | 1.0 | ||
| LVL-fast | 0.008683333333333333 | 0.7 | ||
| LVL-fast | 0.010766666666666667 | 0.8 | ||
| LVL-fast | 0.01065 | 0.8 | ||
| LVL-fast | 0.008866666666666667 | 0.8 | ||
| LVL-fast | 0.0071333333333333335 | 0.8 | ||
| LVL-fast | 0.012466666666666666 | 0.7 | ||
| LVL-fast | 0.011183333333333333 | 1.0 | ||
| LVL-fast | 0.007083333333333333 | 0.8 | ||
| LVL-fast | 0.006733333333333333 | 0.8 | ||
| LVL-fast | 0.009383333333333332 | 0.9 | ||
| LVL-fast | 0.0052833333333333335 | 0.6 | ||
| LVL-fast | 0.009533333333333333 | 0.9 | ||
| LVL-fast | 0.010633333333333333 | 0.9 | ||
| LVL-fast | 0.008316666666666667 | 0.6 | ||
| LVL-fast | 0.01135 | 1.0 | ||
| LVL-fast | 0.00575 | 1.0 | ||
| LVL-fast | 0.007750000000000001 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.7 | ||
| LVL-fast | 0.011783333333333333 | 0.6 | ||
| LVL-fast | 0.009683333333333332 | 0.7 | ||
| LVL-fast | 0.007666666666666667 | 0.9 | ||
| LVL-fast | 0.012566666666666667 | 0.9 | ||
| LVL-fast | 0.0131 | 0.6 | ||
| LVL-fast | 0.00575 | 0.7 | ||
| LVL-fast | 0.009983333333333334 | 0.9 | ||
| LVL-fast | 0.010566666666666667 | 0.6 | ||
| LVL-fast | 0.005566666666666667 | 0.9 | ||
| LVL-fast | 0.012516666666666667 | 0.6 | ||
| LVL-fast | 0.0070999999999999995 | 1.0 | ||
| LVL-fast | 0.012766666666666667 | 0.9 | ||
| LVL-fast | 0.012866666666666667 | 0.8 | ||
| LVL-fast | 0.011783333333333333 | 0.8 | ||
| LVL-fast | 0.011883333333333333 | 0.6 | ||
| LVL-fast | 0.007066666666666666 | 0.6 | ||
| LVL-fast | 0.006666666666666667 | 0.6 | ||
| LVL-fast | 0.0084 | 0.6 | ||
| LVL-fast | 0.005366666666666667 | 0.8 | ||
| LVL-fast | 0.009133333333333334 | 0.6 | ||
| LVL-fast | 0.012316666666666667 | 0.9 | ||
| LVL-fast | 0.00505 | 1.0 | ||
| LVL-fast | 0.010533333333333334 | 0.6 | ||
| LVL-fast | 0.0062 | 0.7 | ||
| LVL-fast | 0.013166666666666667 | 0.8 | ||
| LVL-fast | 0.007633333333333334 | 0.8 | ||
| LVL-fast | 0.005583333333333333 | 1.0 | ||
| LVL-fast | 0.009399999999999999 | 1.0 | ||
| LVL-fast | 0.012066666666666667 | 0.7 | ||
| LVL-fast | 0.0083 | 1.0 | ||
| LVL-fast | 0.008433333333333333 | 0.7 | ||
| LVL-fast | 0.006933333333333333 | 0.7 | ||
| LVL-fast | 0.0091 | 0.8 | ||
| LVL-fast | 0.007716666666666667 | 0.7 | ||
| LVL-fast | 0.01095 | 1.0 | ||
| LVL-fast | 0.007266666666666667 | 1.0 | ||
| LVL-fast | 0.007166666666666667 | 0.7 | ||
| LVL-fast | 0.0111 | 1.0 | ||
| LVL-fast | 0.007216666666666666 | 0.8 | ||
| LVL-fast | 0.012033333333333333 | 0.6 | ||
| LVL-fast | 0.01065 | 0.7 | ||
| LVL-fast | 0.009533333333333333 | 0.7 | ||
| LVL-fast | 0.00885 | 0.6 | ||
| LVL-fast | 0.008166666666666666 | 0.9 | ||
| LVL-fast | 0.013166666666666667 | 0.7 | ||
| LVL-fast | 0.0127 | 0.7 | ||
| LVL-fast | 0.013266666666666668 | 0.7 | ||
| LVL-fast | 0.011000000000000001 | 1.0 | ||
| LVL-fast | 0.005016666666666667 | 0.6 | ||
| LVL-fast | 0.012833333333333334 | 0.8 | ||
| LVL-fast | 0.009016666666666668 | 1.0 | ||
| LVL-fast | 0.0066 | 0.6 | ||
| LVL-fast | 0.008366666666666666 | 0.6 | ||
| LVL-fast | 0.0057 | 1.0 | ||
| LVL-fast | 0.008433333333333333 | 0.8 | ||
| LVL-fast | 0.005716666666666667 | 0.9 | ||
| LVL-fast | 0.0062833333333333335 | 1.0 | ||
| LVL-fast | 0.011383333333333334 | 0.9 | ||
| LVL-fast | 0.010666666666666666 | 0.9 | ||
| LVL-fast | 0.00825 | 0.9 | ||
| LVL-fast | 0.007016666666666667 | 1.0 | ||
| LVL-fast | 0.01005 | 0.7 | ||
| LVL-fast | 0.013116666666666667 | 0.7 | ||
| LVL-fast | 0.009399999999999999 | 0.6 | ||
| LVL-fast | 0.011616666666666666 | 1.0 | ||
| LVL-fast | 0.009283333333333334 | 0.7 | ||
| LVL-fast | 0.011016666666666668 | 0.7 | ||
| LVL-fast | 0.0089 | 0.9 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.00535 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.6 | ||
| LVL-fast | 0.007033333333333333 | 0.9 | ||
| LVL-fast | 0.011183333333333333 | 0.6 | ||
| LVL-fast | 0.010483333333333334 | 0.8 | ||
| LVL-fast | 0.0121 | 0.6 | ||
| LVL-fast | 0.010966666666666668 | 0.8 | ||
| LVL-fast | 0.012283333333333334 | 0.6 | ||
| LVL-fast | 0.0076500000000000005 | 0.8 | ||
| LVL-fast | 0.006016666666666667 | 1.0 | ||
| LVL-fast | 0.00905 | 0.7 | ||
| LVL-fast | 0.009516666666666666 | 0.8 | ||
| LVL-fast | 0.006583333333333333 | 0.6 | ||
| LVL-fast | 0.009200000000000002 | 0.7 | ||
| LVL-fast | 0.0095 | 1.0 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.0066500000000000005 | 0.6 | ||
| LVL-fast | 0.011866666666666666 | 1.0 | ||
| LVL-fast | 0.008366666666666666 | 0.9 | ||
| LVL-fast | 0.006833333333333333 | 0.8 | ||
| LVL-fast | 0.012583333333333334 | 0.8 | ||
| LVL-fast | 0.011983333333333334 | 0.8 | ||
| LVL-fast | 0.010933333333333333 | 0.9 | ||
| LVL-fast | 0.010466666666666668 | 0.9 | ||
| LVL-fast | 0.0096 | 0.8 | ||
| LVL-fast | 0.010416666666666666 | 0.9 | ||
| LVL-fast | 0.00525 | 0.6 | ||
| LVL-fast | 0.006983333333333333 | 0.7 | ||
| LVL-fast | 0.01155 | 0.9 | ||
| LVL-fast | 0.007583333333333333 | 1.0 | ||
| LVL-fast | 0.006116666666666667 | 0.7 | ||
| LVL-fast | 0.00915 | 0.8 | ||
| LVL-fast | 0.009083333333333334 | 0.6 | ||
| LVL-fast | 0.009866666666666666 | 0.6 | ||
| LVL-fast | 0.0052833333333333335 | 0.9 | ||
| LVL-fast | 0.007166666666666667 | 0.6 | ||
| LVL-fast | 0.0085 | 0.7 | ||
| LVL-fast | 0.012483333333333334 | 0.9 | ||
| LVL-fast | 0.009266666666666668 | 1.0 | ||
| LVL-fast | 0.006533333333333334 | 1.0 | ||
| LVL-fast | 0.006366666666666667 | 0.9 | ||
| LVL-fast | 0.012316666666666667 | 0.7 | ||
| LVL-fast | 0.0064333333333333334 | 0.9 | ||
| LVL-fast | 0.007066666666666666 | 0.8 | ||
| LVL-fast | 0.008616666666666667 | 0.9 | ||
| LVL-fast | 0.0057333333333333325 | 0.7 | ||
| LVL-fast | 0.012233333333333334 | 1.0 | ||
| LVL-fast | 0.011433333333333334 | 0.9 | ||
| LVL-fast | 0.01305 | 0.8 | ||
| LVL-fast | 0.008950000000000001 | 0.6 | ||
| LVL-fast | 0.012983333333333335 | 0.8 | ||
| LVL-fast | 0.005233333333333334 | 0.8 | ||
| LVL-fast | 0.0059499999999999996 | 0.7 | ||
| LVL-fast | 0.01225 | 0.9 | ||
| LVL-fast | 0.010483333333333334 | 0.7 | ||
| LVL-fast | 0.011699999999999999 | 0.8 | ||
| LVL-fast | 0.009616666666666666 | 0.6 | ||
| LVL-fast | 0.011183333333333333 | 0.6 | ||
| LVL-fast | 0.0115 | 1.0 | ||
| LVL-fast | 0.008966666666666668 | 0.6 | ||
| LVL-fast | 0.007783333333333334 | 0.8 | ||
| LVL-fast | 0.01135 | 0.7 | ||
| LVL-fast | 0.007766666666666667 | 0.9 | ||
| LVL-fast | 0.005666666666666667 | 0.8 | ||
| LVL-fast | 0.006666666666666667 | 0.6 | ||
| LVL-fast | 0.011083333333333334 | 0.9 | ||
| LVL-fast | 0.011116666666666667 | 0.8 | ||
| LVL-fast | 0.005883333333333333 | 0.8 | ||
| LVL-fast | 0.0096 | 0.9 | ||
| LVL-fast | 0.009016666666666668 | 0.6 | ||
| LVL-fast | 0.009116666666666667 | 0.8 | ||
| LVL-fast | 0.009016666666666668 | 0.6 | ||
| LVL-fast | 0.01295 | 0.9 | ||
| LVL-fast | 0.00605 | 1.0 | ||
| LVL-fast | 0.005533333333333334 | 1.0 | ||
| LVL-fast | 0.0056 | 0.7 | ||
| LVL-fast | 0.0082 | 0.6 | ||
| LVL-fast | 0.01285 | 0.7 | ||
| LVL-fast | 0.007516666666666667 | 0.9 | ||
| LVL-fast | 0.010466666666666668 | 0.7 | ||
| LVL-fast | 0.0052833333333333335 | 0.6 | ||
| LVL-fast | 0.009699999999999999 | 0.6 | ||
| LVL-fast | 0.011466666666666665 | 1.0 | ||
| LVL-fast | 0.0084 | 1.0 | ||
| LVL-fast | 0.009449999999999998 | 0.6 | ||
| LVL-fast | 0.006583333333333333 | 0.9 | ||
| LVL-fast | 0.007266666666666667 | 0.7 | ||
| LVL-fast | 0.009833333333333333 | 0.6 | ||
| LVL-fast | 0.012916666666666667 | 0.9 | ||
| LVL-fast | 0.012633333333333333 | 0.9 | ||
| LVL-fast | 0.005866666666666667 | 0.8 | ||
| LVL-fast | 0.008583333333333333 | 0.6 | ||
| LVL-fast | 0.006183333333333333 | 1.0 | ||
| LVL-fast | 0.011566666666666666 | 0.9 | ||
| LVL-fast | 0.007416666666666667 | 1.0 | ||
| LVL-fast | 0.008333333333333333 | 0.8 | ||
| LVL-fast | 0.009733333333333333 | 0.8 | ||
| LVL-fast | 0.010199999999999999 | 0.8 | ||
| LVL-fast | 0.005783333333333333 | 0.6 | ||
| LVL-fast | 0.006849999999999999 | 0.9 | ||
| LVL-fast | 0.009000000000000001 | 0.8 | ||
| LVL-fast | 0.009833333333333333 | 0.8 | ||
| LVL-fast | 0.007316666666666667 | 0.9 | ||
| LVL-fast | 0.005966666666666666 | 0.6 | ||
| LVL-fast | 0.012583333333333334 | 0.9 | ||
| LVL-fast | 0.011333333333333334 | 1.0 | ||
| LVL-fast | 0.007866666666666666 | 0.9 | ||
| LVL-fast | 0.011083333333333334 | 1.0 | ||
| LVL-fast | 0.00975 | 0.6 | ||
| LVL-fast | 0.009016666666666668 | 0.6 | ||
| LVL-fast | 0.0106 | 0.9 | ||
| LVL-fast | 0.0056500000000000005 | 0.8 | ||
| LVL-fast | 0.012133333333333333 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.6 | ||
| LVL-fast | 0.012716666666666666 | 0.9 | ||
| LVL-fast | 0.008966666666666668 | 0.9 | ||
| LVL-fast | 0.005533333333333334 | 1.0 | ||
| LVL-fast | 0.007083333333333333 | 0.6 | ||
| LVL-fast | 0.0064333333333333334 | 0.9 | ||
| LVL-fast | 0.011583333333333333 | 0.7 | ||
| LVL-fast | 0.00555 | 0.7 | ||
| LVL-fast | 0.010316666666666667 | 0.8 | ||
| LVL-fast | 0.008816666666666667 | 0.7 | ||
| LVL-fast | 0.010866666666666667 | 1.0 | ||
| LVL-fast | 0.012216666666666666 | 0.8 | ||
| LVL-fast | 0.00705 | 0.6 | ||
| LVL-fast | 0.007483333333333333 | 0.7 | ||
| LVL-fast | 0.00745 | 0.6 | ||
| LVL-fast | 0.00625 | 0.7 | ||
| LVL-fast | 0.01295 | 0.8 | ||
| LVL-fast | 0.0070999999999999995 | 0.9 | ||
| LVL-fast | 0.013166666666666667 | 1.0 | ||
| LVL-fast | 0.0067 | 0.9 | ||
| LVL-fast | 0.007583333333333333 | 0.7 | ||
| LVL-fast | 0.008716666666666668 | 0.8 | ||
| LVL-fast | 0.013166666666666667 | 0.9 | ||
| LVL-fast | 0.01105 | 0.9 | ||
| LVL-fast | 0.008 | 0.7 | ||
| LVL-fast | 0.008816666666666667 | 0.8 | ||
| LVL-fast | 0.0055000000000000005 | 0.9 | ||
| LVL-fast | 0.007416666666666667 | 0.8 | ||
| LVL-fast | 0.00625 | 0.8 | ||
| LVL-fast | 0.0076166666666666666 | 0.7 | ||
| LVL-fast | 0.010883333333333333 | 0.7 | ||
| LVL-fast | 0.01 | 0.6 | ||
| LVL-fast | 0.009616666666666666 | 0.8 | ||
| LVL-fast | 0.011616666666666666 | 1.0 | ||
| LVL-fast | 0.008133333333333333 | 0.8 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.006033333333333333 | 0.6 | ||
| LVL-fast | 0.009916666666666666 | 0.7 | ||
| LVL-fast | 0.007533333333333334 | 1.0 | ||
| LVL-fast | 0.0077 | 0.9 | ||
| LVL-fast | 0.007183333333333333 | 0.7 | ||
| LVL-fast | 0.005083333333333333 | 0.8 | ||
| LVL-fast | 0.012183333333333332 | 0.8 | ||
| LVL-fast | 0.011016666666666668 | 0.6 | ||
| LVL-fast | 0.0085 | 0.8 | ||
| LVL-fast | 0.008333333333333333 | 0.9 | ||
| LVL-fast | 0.006983333333333333 | 1.0 | ||
| LVL-fast | 0.00545 | 0.6 | ||
| LVL-fast | 0.007183333333333333 | 0.9 | ||
| LVL-fast | 0.0067 | 0.8 | ||
| LVL-fast | 0.011433333333333334 | 0.6 | ||
| LVL-fast | 0.006866666666666666 | 1.0 | ||
| LVL-fast | 0.0112 | 0.9 | 0.5555555555555556 | |
| LVL-fast | 0.008483333333333334 | 0.6 | ||
| LVL-fast | 0.005383333333333334 | 0.7 | ||
| LVL-fast | 0.011083333333333334 | 1.0 | ||
| LVL-fast | 0.01295 | 0.9 | ||
| LVL-fast | 0.01065 | 1.0 | ||
| LVL-fast | 0.011033333333333334 | 0.7 | ||
| LVL-fast | 0.005216666666666666 | 0.6 | ||
| LVL-fast | 0.0129 | 1.0 | ||
| LVL-fast | 0.00745 | 1.0 | ||
| LVL-fast | 0.011883333333333333 | 0.9 | ||
| LVL-fast | 0.007383333333333334 | 0.6 | ||
| LVL-fast | 0.005483333333333334 | 1.0 | ||
| LVL-fast | 0.012 | 1.0 | ||
| LVL-fast | 0.01155 | 0.7 | ||
| LVL-fast | 0.00955 | 0.9 | ||
| LVL-fast | 0.007016666666666667 | 0.7 | ||
| LVL-fast | 0.009399999999999999 | 0.9 | ||
| LVL-fast | 0.009000000000000001 | 0.7 | ||
| LVL-fast | 0.006083333333333333 | 0.9 | ||
| LVL-fast | 0.010750000000000001 | 1.0 | ||
| LVL-fast | 0.0131 | 0.6 | ||
| LVL-fast | 0.008616666666666667 | 0.9 | ||
| LVL-fast | 0.006166666666666667 | 0.6 | ||
| LVL-fast | 0.006183333333333333 | 1.0 | ||
| LVL-fast | 0.0121 | 0.6 | ||
| LVL-fast | 0.009716666666666667 | 0.9 | ||
| LVL-fast | 0.005483333333333334 | 1.0 | ||
| LVL-fast | 0.011966666666666665 | 0.9 | ||
| LVL-fast | 0.009883333333333333 | 0.9 | ||
| LVL-fast | 0.00525 | 1.0 | ||
| LVL-fast | 0.00885 | 0.7 | ||
| LVL-fast | 0.010033333333333333 | 0.8 | ||
| LVL-fast | 0.00605 | 0.7 | ||
| LVL-fast | 0.006716666666666667 | 0.8 | ||
| LVL-fast | 0.009133333333333334 | 0.8 | ||
| LVL-fast | 0.009366666666666667 | 0.8 | ||
| LVL-fast | 0.009399999999999999 | 0.7 | ||
| LVL-fast | 0.009899999999999999 | 1.0 | ||
| LVL-fast | 0.010633333333333333 | 0.7 | ||
| LVL-fast | 0.011333333333333334 | 0.7 | ||
| LVL-fast | 0.00625 | 0.9 | ||
| LVL-fast | 0.009316666666666668 | 0.8 | ||
| LVL-fast | 0.0101 | 0.6 | ||
| LVL-fast | 0.012883333333333333 | 0.9 | ||
| LVL-fast | 0.009616666666666666 | 0.6 | ||
| LVL-fast | 0.0076 | 0.6 | ||
| LVL-fast | 0.00515 | 1.0 | ||
| LVL-fast | 0.0062833333333333335 | 1.0 | ||
| LVL-fast | 0.010833333333333334 | 0.8 | ||
| LVL-fast | 0.012583333333333334 | 0.7 | ||
| LVL-fast | 0.005433333333333333 | 0.7 | ||
| LVL-fast | 0.0064 | 1.0 | ||
| LVL-fast | 0.006066666666666666 | 1.0 | ||
| LVL-fast | 0.0062833333333333335 | 0.8 | ||
| LVL-fast | 0.01145 | 1.0 | ||
| LVL-fast | 0.010983333333333335 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 1.0 | ||
| LVL-fast | 0.0088 | 0.8 | ||
| LVL-fast | 0.01215 | 0.6 | ||
| LVL-fast | 0.0059 | 0.9 | ||
| LVL-fast | 0.010883333333333333 | 0.6 | ||
| LVL-fast | 0.006466666666666667 | 0.9 | ||
| LVL-fast | 0.008383333333333333 | 0.6 | ||
| LVL-fast | 0.01085 | 0.7 | ||
| LVL-fast | 0.008783333333333334 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.9 | ||
| LVL-fast | 0.00795 | 0.7 | ||
| LVL-fast | 0.009699999999999999 | 1.0 | ||
| LVL-fast | 0.009899999999999999 | 0.8 | ||
| LVL-fast | 0.007750000000000001 | 1.0 | ||
| LVL-fast | 0.012666666666666666 | 0.6 | ||
| LVL-fast | 0.005266666666666667 | 0.7 | ||
| LVL-fast | 0.006766666666666667 | 0.6 | ||
| LVL-fast | 0.012416666666666666 | 0.9 | ||
| LVL-fast | 0.012066666666666667 | 0.7 | ||
| LVL-fast | 0.012116666666666666 | 0.9 | ||
| LVL-fast | 0.009066666666666667 | 0.7 | ||
| LVL-fast | 0.00865 | 0.7 | ||
| LVL-fast | 0.0114 | 1.0 | ||
| LVL-fast | 0.009433333333333332 | 0.7 | ||
| LVL-fast | 0.0076 | 0.8 | ||
| LVL-fast | 0.0125 | 0.6 | ||
| LVL-fast | 0.0069 | 0.9 | ||
| LVL-fast | 0.0058 | 0.9 | ||
| LVL-fast | 0.011633333333333332 | 1.0 | ||
| LVL-fast | 0.010666666666666666 | 0.6 | ||
| LVL-fast | 0.005433333333333333 | 0.8 | ||
| LVL-fast | 0.008566666666666667 | 1.0 | ||
| LVL-fast | 0.013283333333333334 | 1.0 | ||
| LVL-fast | 0.010983333333333335 | 0.7 | ||
| LVL-fast | 0.011966666666666665 | 1.0 | ||
| LVL-fast | 0.011166666666666667 | 1.0 | ||
| LVL-fast | 0.009966666666666667 | 1.0 | ||
| LVL-fast | 0.009899999999999999 | 0.9 | ||
| LVL-fast | 0.011416666666666667 | 1.0 | ||
| LVL-fast | 0.0059 | 0.9 | ||
| LVL-fast | 0.010283333333333334 | 0.7 | ||
| LVL-fast | 0.009966666666666667 | 0.7 | ||
| LVL-fast | 0.009300000000000001 | 0.6 | ||
| LVL-fast | 0.011250000000000001 | 0.6 | ||
| LVL-fast | 0.005716666666666667 | 1.0 | ||
| LVL-fast | 0.006666666666666667 | 0.8 | ||
| LVL-fast | 0.011833333333333333 | 1.0 | ||
| LVL-fast | 0.01215 | 0.6 | ||
| LVL-fast | 0.00525 | 0.9 | ||
| LVL-fast | 0.0125 | 1.0 | ||
| LVL-fast | 0.010983333333333335 | 0.9 | ||
| LVL-fast | 0.0115 | 0.8 | ||
| LVL-fast | 0.008950000000000001 | 0.8 | ||
| LVL-fast | 0.006366666666666667 | 0.8 | ||
| LVL-fast | 0.009666666666666665 | 0.9 | ||
| LVL-fast | 0.005166666666666667 | 0.6 | ||
| LVL-fast | 0.009066666666666667 | 0.8 | ||
| LVL-fast | 0.011616666666666666 | 0.9 | ||
| LVL-fast | 0.005066666666666666 | 0.7 | ||
| LVL-fast | 0.010483333333333334 | 0.7 | ||
| LVL-fast | 0.010833333333333334 | 0.9 | ||
| LVL-fast | 0.007316666666666667 | 0.9 | ||
| LVL-fast | 0.012750000000000001 | 0.6 | ||
| LVL-fast | 0.010783333333333334 | 0.7 | ||
| LVL-fast | 0.012516666666666667 | 1.0 | ||
| LVL-fast | 0.012316666666666667 | 0.7 | ||
| LVL-fast | 0.009933333333333332 | 0.7 | ||
| LVL-fast | 0.010266666666666667 | 1.0 | ||
| LVL-fast | 0.009183333333333333 | 0.9 | ||
| LVL-fast | 0.0068 | 0.6 | ||
| LVL-fast | 0.00515 | 0.9 | ||
| LVL-fast | 0.0056 | 0.8 | ||
| LVL-fast | 0.012533333333333334 | 0.8 | ||
| LVL-fast | 0.007666666666666667 | 1.0 | ||
| LVL-fast | 0.011899999999999999 | 0.6 | ||
| LVL-fast | 0.007933333333333332 | 0.6 | ||
| LVL-fast | 0.0131 | 0.9 | ||
| LVL-fast | 0.008366666666666666 | 0.6 | ||
| LVL-fast | 0.006733333333333333 | 1.0 | ||
| LVL-fast | 0.01045 | 0.6 | ||
| LVL-fast | 0.009633333333333332 | 0.8 | ||
| LVL-fast | 0.0057 | 1.0 | ||
| LVL-fast | 0.011483333333333333 | 0.9 | ||
| LVL-fast | 0.00625 | 0.8 | ||
| LVL-fast | 0.011116666666666667 | 0.8 | ||
| LVL-fast | 0.009449999999999998 | 1.0 | ||
| LVL-fast | 0.00535 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.7 | ||
| LVL-fast | 0.006 | 0.9 | ||
| LVL-fast | 0.009133333333333334 | 1.0 | ||
| LVL-fast | 0.009200000000000002 | 0.9 | ||
| LVL-fast | 0.012633333333333333 | 1.0 | ||
| LVL-fast | 0.00835 | 1.0 | ||
| LVL-fast | 0.006683333333333334 | 0.9 | ||
| LVL-fast | 0.008983333333333334 | 0.9 | ||
| LVL-fast | 0.006883333333333333 | 1.0 | ||
| LVL-fast | 0.010966666666666668 | 0.7 | ||
| LVL-fast | 0.010066666666666666 | 1.0 | ||
| LVL-fast | 0.010783333333333334 | 0.8 | ||
| LVL-fast | 0.0129 | 1.0 | ||
| LVL-fast | 0.00985 | 0.9 | ||
| LVL-fast | 0.007666666666666667 | 1.0 | ||
| LVL-fast | 0.0126 | 0.9 | ||
| LVL-fast | 0.010233333333333334 | 0.8 | ||
| LVL-fast | 0.0078000000000000005 | 1.0 | ||
| LVL-fast | 0.010816666666666667 | 1.0 | ||
| LVL-fast | 0.011866666666666666 | 0.7 | ||
| LVL-fast | 0.01305 | 0.6 | ||
| LVL-fast | 0.00605 | 0.6 | ||
| LVL-fast | 0.010383333333333333 | 0.7 | ||
| LVL-fast | 0.010983333333333335 | 0.6 | ||
| LVL-fast | 0.012483333333333334 | 0.7 | ||
| LVL-fast | 0.013016666666666668 | 0.9 | ||
| LVL-fast | 0.007933333333333332 | 0.7 | ||
| LVL-fast | 0.010483333333333334 | 1.0 | ||
| LVL-fast | 0.008333333333333333 | 0.7 | ||
| LVL-fast | 0.0082 | 0.0 | ||
| LVL-fast | 0.010483333333333334 | 0.0 | ||
| LVL-fast | 0.01135 | 0.3 | ||
| LVL-fast | 0.011166666666666667 | 0.7 | ||
| LVL-fast | 0.00975 | 0.7 | ||
| LVL-fast | 0.012466666666666666 | 0.2 | ||
| LVL-fast | 0.00985 | 0.8 | ||
| LVL-fast | 0.005183333333333333 | 0.3 | ||
| LVL-fast | 0.00735 | 0.1 | ||
| LVL-fast | 0.013316666666666668 | 0.1 | ||
| LVL-fast | 0.005433333333333333 | 0.9 | ||
| LVL-fast | 0.008700000000000001 | 0.3 | ||
| LVL-fast | 0.011566666666666666 | 0.3 | ||
| LVL-fast | 0.006233333333333333 | 0.8 | ||
| LVL-fast | 0.007883333333333332 | 0.2 | ||
| LVL-fast | 0.00755 | 0.4 | ||
| LVL-fast | 0.005816666666666666 | 1.0 | ||
| LVL-fast | 0.006483333333333333 | 0.3 | ||
| LVL-fast | 0.008133333333333333 | 1.0 | 0.6666666666666666 | |
| LVL-fast | 0.009300000000000001 | 1.0 | ||
| LVL-fast | 0.010266666666666667 | 0.4 | ||
| LVL-fast | 0.010283333333333334 | 0.9 | ||
| LVL-fast | 0.011216666666666668 | 0.3 | ||
| LVL-fast | 0.011316666666666668 | 0.3 | ||
| LVL-fast | 0.010183333333333332 | 0.5 | ||
| LVL-fast | 0.012266666666666667 | 0.2 | ||
| LVL-fast | 0.011583333333333333 | 1.0 | ||
| LVL-fast | 0.007750000000000001 | 0.0 | ||
| LVL-fast | 0.009200000000000002 | 0.3 | ||
| LVL-fast | 0.007933333333333332 | 0.3 | ||
| LVL-fast | 0.007 | 1.0 | ||
| LVL-fast | 0.010750000000000001 | 0.1 | ||
| LVL-fast | 0.007983333333333334 | 0.8 | ||
| LVL-fast | 0.0116 | 0.9 | ||
| LVL-fast | 0.01005 | 0.5 | ||
| LVL-fast | 0.007866666666666666 | 0.8 | ||
| LVL-fast | 0.008833333333333334 | 0.9 | ||
| LVL-fast | 0.007316666666666667 | 0.6 | ||
| LVL-fast | 0.006266666666666667 | 0.3 | ||
| LVL-fast | 0.005783333333333333 | 0.9 | ||
| LVL-fast | 0.010766666666666667 | 0.5 | ||
| LVL-fast | 0.007816666666666666 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 0.2 | ||
| LVL-fast | 0.01235 | 0.7 | ||
| LVL-fast | 0.009316666666666668 | 0.5 | ||
| LVL-fast | 0.01305 | 0.8 | ||
| LVL-fast | 0.008183333333333332 | 0.6 | ||
| LVL-fast | 0.0062 | 0.1 | ||
| LVL-fast | 0.01145 | 0.2 | ||
| LVL-fast | 0.010766666666666667 | 0.1 | ||
| LVL-fast | 0.006333333333333333 | 0.2 | ||
| LVL-fast | 0.006866666666666666 | 0.3 | ||
| LVL-fast | 0.006116666666666667 | 0.5 | ||
| LVL-fast | 0.0111 | 0.2 | ||
| LVL-fast | 0.008283333333333334 | 0.0 | ||
| LVL-fast | 0.01265 | 0.9 | ||
| LVL-fast | 0.011166666666666667 | 0.0 | ||
| LVL-fast | 0.012783333333333334 | 0.3 | ||
| LVL-fast | 0.005016666666666667 | 0.7 | ||
| LVL-fast | 0.012333333333333333 | 0.4 | ||
| LVL-fast | 0.012316666666666667 | 0.5 | ||
| LVL-fast | 0.010533333333333334 | 0.7 | ||
| LVL-fast | 0.008083333333333333 | 0.2 | ||
| LVL-fast | 0.00545 | 0.2 | ||
| LVL-fast | 0.01005 | 0.0 | ||
| LVL-fast | 0.00805 | 0.7 | ||
| LVL-fast | 0.012983333333333335 | 0.9 | ||
| LVL-fast | 0.010366666666666666 | 0.0 | ||
| LVL-fast | 0.007466666666666667 | 0.9 | ||
| LVL-fast | 0.006066666666666666 | 0.0 | ||
| LVL-fast | 0.007083333333333333 | 0.5 | ||
| LVL-fast | 0.006500000000000001 | 0.1 | ||
| LVL-fast | 0.005316666666666667 | 0.3 | ||
| LVL-fast | 0.012633333333333333 | 0.0 | ||
| LVL-fast | 0.00515 | 0.0 | ||
| LVL-fast | 0.011699999999999999 | 0.2 | ||
| LVL-fast | 0.0064333333333333334 | 0.5 | ||
| LVL-fast | 0.009699999999999999 | 0.8 | ||
| LVL-fast | 0.0084 | 0.8 | ||
| LVL-fast | 0.0121 | 0.5 | ||
| LVL-fast | 0.0103 | 0.0 | ||
| LVL-fast | 0.0066 | 0.6 | ||
| LVL-fast | 0.010633333333333333 | 0.1 | ||
| LVL-fast | 0.008466666666666667 | 1.0 | ||
| LVL-fast | 0.007766666666666667 | 1.0 | ||
| LVL-fast | 0.013283333333333334 | 0.0 | ||
| LVL-fast | 0.0070999999999999995 | 0.5 | ||
| LVL-fast | 0.011033333333333334 | 0.6 | ||
| LVL-fast | 0.010966666666666668 | 0.6 | ||
| LVL-fast | 0.0056500000000000005 | 0.8 | ||
| LVL-fast | 0.013166666666666667 | 0.3 | ||
| LVL-fast | 0.006466666666666667 | 0.1 | ||
| LVL-fast | 0.007033333333333333 | 0.3 | ||
| LVL-fast | 0.008016666666666667 | 0.2 | ||
| LVL-fast | 0.010883333333333333 | 0.6 | ||
| LVL-fast | 0.005416666666666667 | 0.5 | ||
| LVL-fast | 0.010916666666666667 | 0.3 | ||
| LVL-fast | 0.00785 | 0.4 | ||
| LVL-fast | 0.009583333333333333 | 0.3 | ||
| LVL-fast | 0.008833333333333334 | 0.1 | ||
| LVL-fast | 0.009016666666666668 | 0.2 | ||
| LVL-fast | 0.01065 | 0.2 | ||
| LVL-fast | 0.009566666666666666 | 0.8 | ||
| LVL-fast | 0.005 | 0.4 | ||
| LVL-fast | 0.0085 | 0.7 | ||
| LVL-fast | 0.007183333333333333 | 1.0 | ||
| LVL-fast | 0.013266666666666668 | 0.3 | ||
| LVL-fast | 0.005116666666666667 | 0.9 | ||
| LVL-fast | 0.010316666666666667 | 0.5 | ||
| LVL-fast | 0.0083 | 0.0 | ||
| LVL-fast | 0.012 | 1.0 | ||
| LVL-fast | 0.009783333333333333 | 0.8 | ||
| LVL-fast | 0.005383333333333334 | 0.4 | ||
| LVL-fast | 0.00825 | 0.8 | ||
| LVL-fast | 0.007033333333333333 | 1.0 | ||
| LVL-fast | 0.008133333333333333 | 0.0 | ||
| LVL-fast | 0.007833333333333333 | 0.7 | ||
| LVL-fast | 0.012116666666666666 | 1.0 | ||
| LVL-fast | 0.01005 | 0.4 | ||
| LVL-fast | 0.005233333333333334 | 0.6 | ||
| LVL-fast | 0.010866666666666667 | 0.5 | ||
| LVL-fast | 0.006966666666666666 | 0.5 | ||
| LVL-fast | 0.0121 | 0.0 | ||
| LVL-fast | 0.006983333333333333 | 0.3 | ||
| LVL-fast | 0.0060999999999999995 | 0.7 | ||
| LVL-fast | 0.010616666666666667 | 0.5 | ||
| LVL-fast | 0.006033333333333333 | 0.7 | ||
| LVL-fast | 0.008133333333333333 | 0.6 | ||
| LVL-fast | 0.011883333333333333 | 0.6 | ||
| LVL-fast | 0.010383333333333333 | 0.6 | ||
| LVL-fast | 0.0078000000000000005 | 0.6 | ||
| LVL-fast | 0.007733333333333333 | 1.0 | ||
| LVL-fast | 0.005883333333333333 | 0.3 | ||
| LVL-fast | 0.0072 | 0.2 | ||
| LVL-fast | 0.008283333333333334 | 0.9 | ||
| LVL-fast | 0.007533333333333334 | 0.3 | ||
| LVL-fast | 0.01065 | 0.8 | ||
| LVL-fast | 0.007083333333333333 | 0.4 | ||
| LVL-fast | 0.0052833333333333335 | 0.1 | ||
| LVL-fast | 0.009083333333333334 | 0.2 | ||
| LVL-fast | 0.005266666666666667 | 0.5 | ||
| LVL-fast | 0.009649999999999999 | 0.1 | ||
| LVL-fast | 0.0077 | 0.8 | ||
| LVL-fast | 0.00825 | 0.5 | ||
| LVL-fast | 0.009416666666666665 | 1.0 | ||
| LVL-fast | 0.007566666666666667 | 0.7 | ||
| LVL-fast | 0.012483333333333334 | 0.7 | ||
| LVL-fast | 0.00935 | 1.0 | ||
| LVL-fast | 0.006750000000000001 | 0.5 | ||
| LVL-fast | 0.005416666666666667 | 0.3 | ||
| LVL-fast | 0.008283333333333334 | 0.7 | ||
| LVL-fast | 0.007483333333333333 | 0.8 | ||
| LVL-fast | 0.01205 | 0.8 | ||
| LVL-fast | 0.011066666666666667 | 0.6 | ||
| LVL-fast | 0.0123 | 0.8 | ||
| LVL-fast | 0.013083333333333334 | 0.3 | ||
| LVL-fast | 0.0057 | 0.9 | ||
| LVL-fast | 0.006116666666666667 | 0.5 | ||
| LVL-fast | 0.013016666666666668 | 0.0 | ||
| LVL-fast | 0.00715 | 0.0 | ||
| LVL-fast | 0.006233333333333333 | 0.8 | ||
| LVL-fast | 0.008816666666666667 | 0.7 | ||
| LVL-fast | 0.012966666666666666 | 0.6 | ||
| LVL-fast | 0.008633333333333333 | 0.7 | ||
| LVL-fast | 0.00695 | 0.6 | ||
| LVL-fast | 0.009083333333333334 | 0.0 | ||
| LVL-fast | 0.0077 | 0.6 | ||
| LVL-fast | 0.01055 | 0.7 | ||
| LVL-fast | 0.007316666666666667 | 0.1 | ||
| LVL-fast | 0.009516666666666666 | 0.6 | ||
| LVL-fast | 0.005516666666666667 | 0.9 | ||
| LVL-fast | 0.013316666666666668 | 0.4 | ||
| LVL-fast | 0.005316666666666667 | 0.4 | ||
| LVL-fast | 0.011966666666666665 | 0.8 | ||
| LVL-fast | 0.008766666666666667 | 0.7 | ||
| LVL-fast | 0.00815 | 0.6 | ||
| LVL-fast | 0.012866666666666667 | 0.0 | ||
| LVL-fast | 0.01295 | 0.0 | ||
| LVL-fast | 0.009133333333333334 | 0.9 | ||
| LVL-fast | 0.007683333333333334 | 0.8 | ||
| LVL-fast | 0.006083333333333333 | 0.9 | 0.7777777777777778 | |
| LVL-fast | 0.007866666666666666 | 0.3 | ||
| LVL-fast | 0.006383333333333334 | 0.8 | ||
| LVL-fast | 0.0077 | 0.6 | ||
| LVL-fast | 0.005916666666666666 | 0.1 | ||
| LVL-fast | 0.009366666666666667 | 0.0 | ||
| LVL-fast | 0.007666666666666667 | 1.0 | ||
| LVL-fast | 0.013033333333333334 | 1.0 | ||
| LVL-fast | 0.011066666666666667 | 0.5 | ||
| LVL-fast | 0.011233333333333335 | 1.0 | ||
| LVL-fast | 0.006933333333333333 | 1.0 | ||
| LVL-fast | 0.013316666666666668 | 0.5 | ||
| LVL-fast | 0.00735 | 0.6 | ||
| LVL-fast | 0.008450000000000001 | 1.0 | ||
| LVL-fast | 0.007466666666666667 | 0.5 | ||
| LVL-fast | 0.005566666666666667 | 0.5 | ||
| LVL-fast | 0.005 | 1.0 | ||
| LVL-fast | 0.009649999999999999 | 0.2 | ||
| LVL-fast | 0.011066666666666667 | 0.9 | ||
| LVL-fast | 0.007266666666666667 | 0.4 | ||
| LVL-fast | 0.011433333333333334 | 0.3 | ||
| LVL-fast | 0.011816666666666666 | 0.7 | ||
| LVL-fast | 0.009766666666666667 | 0.5 | ||
| LVL-fast | 0.007816666666666666 | 0.7 | ||
| LVL-fast | 0.008766666666666667 | 0.3 | ||
| LVL-fast | 0.011216666666666668 | 0.5 | ||
| LVL-fast | 0.009000000000000001 | 0.6 | ||
| LVL-fast | 0.010016666666666667 | 0.0 | ||
| LVL-fast | 0.011833333333333333 | 0.3 | ||
| LVL-fast | 0.008833333333333334 | 0.1 | ||
| LVL-fast | 0.005983333333333333 | 0.6 | ||
| LVL-fast | 0.0051333333333333335 | 0.8 | ||
| LVL-fast | 0.007383333333333334 | 0.6 | ||
| LVL-fast | 0.007183333333333333 | 0.8 | ||
| LVL-fast | 0.0115 | 0.8 | ||
| LVL-fast | 0.005333333333333333 | 0.5 | ||
| LVL-fast | 0.007366666666666666 | 0.7 | ||
| LVL-fast | 0.00865 | 0.9 | ||
| LVL-fast | 0.005016666666666667 | 0.4 | ||
| LVL-fast | 0.009283333333333334 | 0.4 | ||
| LVL-fast | 0.0057333333333333325 | 0.1 | ||
| LVL-fast | 0.0059 | 0.7 | ||
| LVL-fast | 0.009766666666666667 | 0.9 | ||
| LVL-fast | 0.01005 | 0.5 | ||
| LVL-fast | 0.009649999999999999 | 0.9 | ||
| LVL-fast | 0.005483333333333334 | 0.1 | ||
| LVL-fast | 0.009116666666666667 | 0.7 | ||
| LVL-fast | 0.010766666666666667 | 0.3 | ||
| LVL-fast | 0.008366666666666666 | 0.8 | ||
| LVL-fast | 0.012816666666666667 | 0.2 | ||
| LVL-fast | 0.01115 | 0.5 | ||
| LVL-fast | 0.013133333333333334 | 0.7 | ||
| LVL-fast | 0.00755 | 0.4 | ||
| LVL-fast | 0.006783333333333333 | 0.4 | ||
| LVL-fast | 0.006616666666666667 | 0.7 | ||
| LVL-fast | 0.007083333333333333 | 0.1 | ||
| LVL-fast | 0.005 | 0.1 | ||
| LVL-fast | 0.009833333333333333 | 0.9 | ||
| LVL-fast | 0.011683333333333332 | 0.2 | ||
| LVL-fast | 0.008366666666666666 | 0.5 | ||
| LVL-fast | 0.008616666666666667 | 0.7 | ||
| LVL-fast | 0.011949999999999999 | 0.3 | ||
| LVL-fast | 0.005366666666666667 | 0.2 | ||
| LVL-fast | 0.0064 | 0.7 | ||
| LVL-fast | 0.01055 | 0.3 | ||
| LVL-fast | 0.010233333333333334 | 0.7 | ||
| LVL-fast | 0.010933333333333333 | 0.1 | ||
| LVL-fast | 0.005433333333333333 | 0.8 | ||
| LVL-fast | 0.01015 | 1.0 | ||
| LVL-fast | 0.0104 | 1.0 | ||
| LVL-fast | 0.0062 | 0.4 | ||
| LVL-fast | 0.010166666666666666 | 0.3 | ||
| LVL-fast | 0.01175 | 0.6 | ||
| LVL-fast | 0.007216666666666666 | 0.3 | ||
| LVL-fast | 0.011066666666666667 | 0.6 | ||
| LVL-fast | 0.011933333333333332 | 0.6 | ||
| LVL-fast | 0.008433333333333333 | 1.0 | ||
| LVL-fast | 0.008233333333333334 | 0.5 | ||
| LVL-fast | 0.0104 | 0.9 | ||
| LVL-fast | 0.008166666666666666 | 0.9 | ||
| LVL-fast | 0.0082 | 0.3 | ||
| LVL-fast | 0.008716666666666668 | 0.0 | ||
| LVL-fast | 0.007783333333333334 | 0.0 | ||
| LVL-fast | 0.00815 | 0.9 | ||
| LVL-fast | 0.005183333333333333 | 0.4 | ||
| LVL-fast | 0.010266666666666667 | 0.0 | 0.8888888888888888 | |
| LVL-fast | 0.007750000000000001 | 1.0 | ||
| LVL-fast | 0.01315 | 1.0 | ||
| LVL-fast | 0.008866666666666667 | 1.0 | ||
| LVL-fast | 0.010916666666666667 | 0.6 | ||
| LVL-fast | 0.00875 | 1.0 | ||
| LVL-fast | 0.011183333333333333 | 0.2 | ||
| LVL-fast | 0.008316666666666667 | 0.8 | ||
| LVL-fast | 0.00975 | 0.0 | ||
| LVL-fast | 0.0072 | 0.5 | ||
| LVL-fast | 0.0109 | 0.0 | ||
| LVL-fast | 0.012166666666666666 | 0.9 | ||
| LVL-fast | 0.010616666666666667 | 0.1 | ||
| LVL-fast | 0.011083333333333334 | 0.5 | ||
| LVL-fast | 0.00935 | 0.3 | ||
| LVL-fast | 0.0131 | 0.8 | ||
| LVL-fast | 0.007233333333333333 | 0.9 | ||
| LVL-fast | 0.0072833333333333335 | 0.6 | ||
| LVL-fast | 0.008016666666666667 | 0.1 | ||
| LVL-fast | 0.012883333333333333 | 0.1 | ||
| LVL-fast | 0.008333333333333333 | 1.0 | ||
| LVL-fast | 0.009216666666666668 | 0.0 | ||
| LVL-fast | 0.009683333333333332 | 0.2 | ||
| LVL-fast | 0.011666666666666665 | 0.1 | ||
| LVL-fast | 0.008883333333333333 | 1.0 | ||
| LVL-fast | 0.0106 | 0.8 | ||
| LVL-fast | 0.009533333333333333 | 0.0 | ||
| LVL-fast | 0.010066666666666666 | 1.0 | 1.0 | |
| LVL-fast | 0.010783333333333334 | 0.9 | ||
| LVL-fast | 0.0104 | 1.0 | 1.0 | |
| LVL-fast | 0.012266666666666667 | 0.6 | 1.0 | |
| LVL-fast | 0.007333333333333333 | 0.7 | ||
| LVL-fast | 0.0066 | 0.2 | ||
| LVL-fast | 0.006566666666666667 | 0.1 | ||
| LVL-fast | 0.012533333333333334 | 0.9 | 1.0 | |
| LVL-fast | 0.00645 | 0.7 | ||
| LVL-fast | 0.008083333333333333 | 0.3 | ||
| LVL-fast | 0.012833333333333334 | 0.6 | ||
| LVL-fast | 0.008766666666666667 | 0.6 | ||
| LVL-fast | 0.009000000000000001 | 0.9 | ||
| LVL-fast | 0.0070999999999999995 | 0.8 | ||
| LVL-fast | 0.0105 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.2 | 1.0 | |
| LVL-fast | 0.00655 | 0.8 | ||
| LVL-fast | 0.009000000000000001 | 0.4 | ||
| LVL-fast | 0.0076166666666666666 | 0.2 | ||
| LVL-fast | 0.0059499999999999996 | 0.8 | ||
| LVL-fast | 0.0056500000000000005 | 0.3 | ||
| LVL-fast | 0.008 | 0.5 | ||
| LVL-fast | 0.008483333333333334 | 0.2 | ||
| LVL-fast | 0.0072833333333333335 | 0.0 | ||
| LVL-fast | 0.0058 | 1.0 | ||
| LVL-fast | 0.01055 | 1.0 | ||
| LVL-fast | 0.013250000000000001 | 0.7 | ||
| LVL-fast | 0.0054 | 1.0 | ||
| LVL-fast | 0.008816666666666667 | 1.0 | ||
| LVL-fast | 0.005683333333333334 | 0.8 | ||
| LVL-fast | 0.01105 | 1.0 | ||
| LVL-fast | 0.0089 | 0.8 | ||
| LVL-fast | 0.005216666666666666 | 0.7 | ||
| LVL-fast | 0.006183333333333333 | 0.0 | ||
| LVL-fast | 0.006066666666666666 | 0.1 | ||
| LVL-fast | 0.0067 | 1.0 | ||
| LVL-fast | 0.010683333333333333 | 0.5 | ||
| LVL-fast | 0.008983333333333334 | 0.5 | ||
| LVL-fast | 0.013116666666666667 | 0.0 | ||
| LVL-fast | 0.01175 | 0.2 | ||
| LVL-fast | 0.012466666666666666 | 0.2 | ||
| LVL-fast | 0.009066666666666667 | 0.2 | ||
| LVL-fast | 0.010966666666666668 | 0.1 | ||
| LVL-fast | 0.006016666666666667 | 0.5 | ||
| LVL-fast | 0.010733333333333334 | 0.8 | ||
| LVL-fast | 0.01065 | 0.8 | ||
| LVL-fast | 0.0054 | 0.3 | ||
| LVL-fast | 0.006166666666666667 | 0.1 | ||
| LVL-fast | 0.0088 | 0.7 | ||
| LVL-fast | 0.009066666666666667 | 0.5 | ||
| LVL-fast | 0.009033333333333334 | 0.9 | 0.8888888888888888 | |
| LVL-fast | 0.008066666666666666 | 1.0 | ||
| LVL-fast | 0.005666666666666667 | 0.4 | ||
| LVL-fast | 0.012883333333333333 | 0.9 | 1.0 | |
| LVL-fast | 0.005916666666666666 | 1.0 | ||
| LVL-fast | 0.005083333333333333 | 0.5 | ||
| LVL-fast | 0.01105 | 0.6 | ||
| LVL-fast | 0.009183333333333333 | 0.2 | ||
| LVL-fast | 0.006416666666666667 | 0.4 | ||
| LVL-fast | 0.0058 | 0.3 | ||
| LVL-fast | 0.013183333333333333 | 0.0 | ||
| LVL-fast | 0.009483333333333333 | 0.8 | ||
| LVL-slowFast | 0.011116666666666667 | 0.6 | ||
| LVL-slowFast | 0.014983333333333333 | 0.0 | ||
| LVL-slowFast | 0.011616666666666666 | 0.4 | ||
| LVL-slowFast | 0.012483333333333334 | 0.0 | ||
| LVL-slowFast | 0.008733333333333334 | 0.6 | ||
| LVL-slowFast | 0.0114 | 0.8 | ||
| LVL-slowFast | 0.0131 | 0.9 | ||
| LVL-slowFast | 0.01115 | 0.0 | ||
| LVL-slowFast | 0.009616666666666666 | 1.0 | ||
| LVL-slowFast | 0.013083333333333334 | 1.0 | ||
| LVL-slowFast | 0.011933333333333332 | 0.2 | ||
| LVL-slowFast | 0.013816666666666666 | 0.3 | ||
| LVL-slowFast | 0.0116 | 0.7 | ||
| LVL-slowFast | 0.009233333333333335 | 1.0 | ||
| LVL-slowFast | 0.013033333333333334 | 0.8 | ||
| LVL-slowFast | 0.01215 | 0.4 | ||
| LVL-slowFast | 0.011616666666666666 | 0.9 | ||
| LVL-slowFast | 0.013516666666666668 | 0.7 | ||
| LVL-slowFast | 0.012 | 0.5 | ||
| LVL-slowFast | 0.01495 | 0.6 | 0.0 | |
| LVL-slowFast | 0.014016666666666667 | 0.4 | ||
| LVL-slowFast | 0.014616666666666667 | 0.1 | ||
| LVL-slowFast | 0.014716666666666666 | 1.0 | ||
| LVL-slowFast | 0.012733333333333334 | 0.9 | ||
| LVL-slowFast | 0.013333333333333334 | 0.5 | ||
| LVL-slowFast | 0.0112 | 0.7 | ||
| LVL-slowFast | 0.014266666666666667 | 0.6 | ||
| LVL-slowFast | 0.01445 | 0.5 | ||
| LVL-slowFast | 0.0101 | 0.8 | ||
| LVL-slowFast | 0.014616666666666667 | 0.4 | ||
| LVL-slowFast | 0.01 | 0.7 | ||
| LVL-slowFast | 0.0098 | 0.2 | ||
| LVL-slowFast | 0.011083333333333334 | 0.1 | ||
| LVL-slowFast | 0.0148 | 0.5 | ||
| LVL-slowFast | 0.009466666666666667 | 0.0 | ||
| LVL-slowFast | 0.012966666666666666 | 0.1 | ||
| LVL-slowFast | 0.01335 | 0.4 | ||
| LVL-slowFast | 0.013366666666666667 | 0.5 | ||
| LVL-slowFast | 0.014283333333333334 | 0.0 | ||
| LVL-slowFast | 0.0114 | 0.8 | ||
| LVL-slowFast | 0.012933333333333333 | 0.8 | ||
| LVL-slowFast | 0.008883333333333333 | 0.8 | ||
| LVL-slowFast | 0.010816666666666667 | 0.4 | ||
| LVL-slowFast | 0.012433333333333333 | 0.2 | ||
| LVL-slowFast | 0.011966666666666665 | 0.5 | ||
| LVL-slowFast | 0.014033333333333333 | 0.3 | ||
| LVL-slowFast | 0.0086 | 1.0 | ||
| LVL-slowFast | 0.0125 | 0.4 | ||
| LVL-slowFast | 0.00985 | 0.0 | ||
| LVL-slowFast | 0.013633333333333332 | 0.3 | ||
| LVL-slowFast | 0.01375 | 0.0 | ||
| LVL-slowFast | 0.008616666666666667 | 0.6 | ||
| LVL-slowFast | 0.01055 | 0.8 | ||
| LVL-slowFast | 0.012383333333333333 | 1.0 | ||
| LVL-slowFast | 0.011183333333333333 | 0.1 | ||
| LVL-slowFast | 0.012333333333333333 | 0.6 | ||
| LVL-slowFast | 0.010716666666666668 | 0.0 | ||
| LVL-slowFast | 0.010433333333333333 | 0.7 | ||
| LVL-slowFast | 0.009949999999999999 | 0.9 | ||
| LVL-slowFast | 0.013083333333333334 | 0.6 | ||
| LVL-slowFast | 0.01435 | 0.6 | ||
| LVL-slowFast | 0.010083333333333333 | 0.7 | ||
| LVL-slowFast | 0.0116 | 0.0 | ||
| LVL-slowFast | 0.012433333333333333 | 0.4 | ||
| LVL-slowFast | 0.012333333333333333 | 0.4 | ||
| LVL-slowFast | 0.009033333333333334 | 0.9 | ||
| LVL-slowFast | 0.014983333333333333 | 1.0 | ||
| LVL-slowFast | 0.012283333333333334 | 0.1 | ||
| LVL-slowFast | 0.011816666666666666 | 0.4 | ||
| LVL-slowFast | 0.010183333333333332 | 0.9 | ||
| LVL-slowFast | 0.013533333333333335 | 0.4 | ||
| LVL-slowFast | 0.01435 | 0.9 | ||
| LVL-slowFast | 0.01245 | 0.2 | ||
| LVL-slowFast | 0.009449999999999998 | 0.1 | ||
| LVL-slowFast | 0.012266666666666667 | 0.9 | ||
| LVL-slowFast | 0.011316666666666668 | 0.4 | ||
| LVL-slowFast | 0.01335 | 0.4 | ||
| LVL-slowFast | 0.0091 | 0.0 | ||
| LVL-slowFast | 0.01265 | 0.2 | ||
| LVL-slowFast | 0.009000000000000001 | 0.4 | ||
| LVL-slowFast | 0.014916666666666667 | 0.1 | ||
| LVL-slowFast | 0.0139 | 0.0 | ||
| LVL-slowFast | 0.013383333333333334 | 0.7 | ||
| LVL-slowFast | 0.01415 | 0.4 | ||
| LVL-slowFast | 0.01 | 0.2 | ||
| LVL-slowFast | 0.012199999999999999 | 0.3 | ||
| LVL-slowFast | 0.008616666666666667 | 0.2 | ||
| LVL-slowFast | 0.013766666666666667 | 0.3 | ||
| LVL-slowFast | 0.014766666666666668 | 0.3 | ||
| LVL-slowFast | 0.014466666666666666 | 0.3 | ||
| LVL-slowFast | 0.008733333333333334 | 0.0 | ||
| LVL-slowFast | 0.013733333333333332 | 0.7 | ||
| LVL-slowFast | 0.013733333333333332 | 0.7 | ||
| LVL-slowFast | 0.01405 | 0.2 | ||
| LVL-slowFast | 0.00905 | 0.3 | ||
| LVL-slowFast | 0.012466666666666666 | 0.9 | ||
| LVL-slowFast | 0.012333333333333333 | 0.5 | ||
| LVL-slowFast | 0.009316666666666668 | 0.4 | ||
| LVL-slowFast | 0.011949999999999999 | 0.4 | ||
| LVL-slowFast | 0.012933333333333333 | 0.2 | ||
| LVL-slowFast | 0.011233333333333335 | 0.0 | ||
| LVL-slowFast | 0.013566666666666666 | 0.3 | ||
| LVL-slowFast | 0.009716666666666667 | 0.2 | ||
| LVL-slowFast | 0.0114 | 0.2 | ||
| LVL-slowFast | 0.012583333333333334 | 1.0 | ||
| LVL-slowFast | 0.009583333333333333 | 0.6 | ||
| LVL-slowFast | 0.013533333333333335 | 0.3 | ||
| LVL-slowFast | 0.008966666666666668 | 0.0 | ||
| LVL-slowFast | 0.013416666666666667 | 0.9 | ||
| LVL-slowFast | 0.012016666666666667 | 0.3 | ||
| LVL-slowFast | 0.01295 | 0.1 | ||
| LVL-slowFast | 0.014966666666666666 | 0.2 | ||
| LVL-slowFast | 0.011133333333333334 | 0.2 | ||
| LVL-slowFast | 0.009816666666666666 | 0.9 | ||
| LVL-slowFast | 0.013033333333333334 | 0.9 | ||
| LVL-slowFast | 0.014133333333333333 | 0.6 | ||
| LVL-slowFast | 0.008583333333333333 | 0.2 | ||
| LVL-slowFast | 0.012866666666666667 | 0.3 | ||
| LVL-slowFast | 0.014016666666666667 | 0.5 | ||
| LVL-slowFast | 0.008633333333333333 | 0.4 | ||
| LVL-slowFast | 0.0123 | 0.2 | ||
| LVL-slowFast | 0.0103 | 0.6 | ||
| LVL-slowFast | 0.0147 | 0.4 | ||
| LVL-slowFast | 0.008766666666666667 | 0.5 | ||
| LVL-slowFast | 0.011699999999999999 | 0.7 | ||
| LVL-slowFast | 0.0095 | 0.0 | ||
| LVL-slowFast | 0.0124 | 0.0 | ||
| LVL-slowFast | 0.010066666666666666 | 0.5 | ||
| LVL-slowFast | 0.01285 | 1.0 | ||
| LVL-slowFast | 0.0143 | 0.1 | ||
| LVL-slowFast | 0.009783333333333333 | 0.1 | ||
| LVL-slowFast | 0.013783333333333333 | 0.9 | ||
| LVL-slowFast | 0.008866666666666667 | 0.8 | ||
| LVL-slowFast | 0.01115 | 0.4 | ||
| LVL-slowFast | 0.00855 | 1.0 | ||
| LVL-slowFast | 0.012433333333333333 | 0.5 | ||
| LVL-slowFast | 0.01085 | 0.9 | ||
| LVL-slowFast | 0.014633333333333333 | 0.2 | ||
| LVL-slowFast | 0.012133333333333333 | 0.0 | ||
| LVL-slowFast | 0.011716666666666665 | 0.1 | ||
| LVL-slowFast | 0.009583333333333333 | 0.0 | ||
| LVL-slowFast | 0.00855 | 1.0 | ||
| LVL-slowFast | 0.012216666666666666 | 0.4 | ||
| LVL-slowFast | 0.009066666666666667 | 0.8 | ||
| LVL-slowFast | 0.0115 | 1.0 | ||
| LVL-slowFast | 0.010383333333333333 | 0.4 | ||
| LVL-slowFast | 0.010366666666666666 | 0.1 | ||
| LVL-slowFast | 0.013266666666666668 | 0.1 | ||
| LVL-slowFast | 0.012666666666666666 | 1.0 | ||
| LVL-slowFast | 0.008666666666666666 | 0.8 | ||
| LVL-slowFast | 0.010116666666666666 | 0.1 | ||
| LVL-slowFast | 0.010383333333333333 | 0.4 | ||
| LVL-slowFast | 0.012966666666666666 | 0.6 | ||
| LVL-slowFast | 0.010366666666666666 | 0.9 | ||
| LVL-slowFast | 0.011300000000000001 | 0.5 | 0.1111111111111111 | |
| LVL-slowFast | 0.009116666666666667 | 0.7 | ||
| LVL-slowFast | 0.0139 | 0.6 | ||
| LVL-slowFast | 0.0109 | 0.2 | ||
| LVL-slowFast | 0.014366666666666666 | 0.5 | ||
| LVL-slowFast | 0.008566666666666667 | 0.1 | ||
| LVL-slowFast | 0.0114 | 0.5 | ||
| LVL-slowFast | 0.010983333333333335 | 0.8 | ||
| LVL-slowFast | 0.01335 | 0.2 | ||
| LVL-slowFast | 0.012683333333333333 | 0.4 | ||
| LVL-slowFast | 0.008733333333333334 | 1.0 | ||
| LVL-slowFast | 0.009383333333333332 | 0.7 | ||
| LVL-slowFast | 0.012466666666666666 | 0.0 | ||
| LVL-slowFast | 0.011983333333333334 | 0.3 | ||
| LVL-slowFast | 0.011333333333333334 | 0.8 | ||
| LVL-slowFast | 0.0126 | 0.2 | ||
| LVL-slowFast | 0.008533333333333334 | 0.8 | ||
| LVL-slowFast | 0.01175 | 0.5 | ||
| LVL-slowFast | 0.009866666666666666 | 0.9 | ||
| LVL-slowFast | 0.009483333333333333 | 0.0 | ||
| LVL-slowFast | 0.012166666666666666 | 1.0 | ||
| LVL-slowFast | 0.012966666666666666 | 0.9 | ||
| LVL-slowFast | 0.008333333333333333 | 0.7 | ||
| LVL-slowFast | 0.0129 | 0.0 | ||
| LVL-slowFast | 0.009666666666666665 | 0.1 | ||
| LVL-slowFast | 0.013116666666666667 | 0.2 | ||
| LVL-slowFast | 0.012783333333333334 | 0.5 | ||
| LVL-slowFast | 0.01225 | 0.7 | ||
| LVL-slowFast | 0.012466666666666666 | 0.8 | ||
| LVL-slowFast | 0.0106 | 0.3 | ||
| LVL-slowFast | 0.0131 | 0.4 | ||
| LVL-slowFast | 0.010966666666666668 | 0.9 | ||
| LVL-slowFast | 0.008783333333333334 | 0.0 | ||
| LVL-slowFast | 0.010366666666666666 | 0.1 | ||
| LVL-slowFast | 0.013716666666666665 | 0.0 | ||
| LVL-slowFast | 0.010566666666666667 | 0.2 | ||
| LVL-slowFast | 0.01335 | 0.5 | ||
| LVL-slowFast | 0.012083333333333333 | 0.1 | ||
| LVL-slowFast | 0.009366666666666667 | 0.2 | ||
| LVL-slowFast | 0.013766666666666667 | 0.0 | ||
| LVL-slowFast | 0.009566666666666666 | 0.8 | ||
| LVL-slowFast | 0.010683333333333333 | 0.1 | ||
| LVL-slowFast | 0.0132 | 0.1 | ||
| LVL-slowFast | 0.0098 | 0.4 | ||
| LVL-slowFast | 0.013116666666666667 | 0.5 | ||
| LVL-slowFast | 0.01035 | 0.4 | ||
| LVL-slowFast | 0.01355 | 0.2 | ||
| LVL-slowFast | 0.013133333333333334 | 0.0 | ||
| LVL-slowFast | 0.013433333333333334 | 0.7 | ||
| LVL-slowFast | 0.014750000000000001 | 1.0 | ||
| LVL-slowFast | 0.009266666666666668 | 0.2 | ||
| LVL-slowFast | 0.009633333333333332 | 0.0 | ||
| LVL-slowFast | 0.012199999999999999 | 0.4 | ||
| LVL-slowFast | 0.012316666666666667 | 1.0 | ||
| LVL-slowFast | 0.009483333333333333 | 0.5 | ||
| LVL-slowFast | 0.008416666666666666 | 1.0 | ||
| LVL-slowFast | 0.01055 | 0.4 | ||
| LVL-slowFast | 0.012733333333333334 | 0.5 | ||
| LVL-slowFast | 0.014199999999999999 | 0.6 | ||
| LVL-slowFast | 0.010416666666666666 | 0.6 | ||
| LVL-slowFast | 0.014566666666666667 | 0.1 | ||
| LVL-slowFast | 0.012366666666666666 | 0.9 | ||
| LVL-slowFast | 0.011466666666666665 | 1.0 | ||
| LVL-slowFast | 0.013383333333333334 | 0.6 | ||
| LVL-slowFast | 0.010483333333333334 | 0.6 | ||
| LVL-slowFast | 0.014716666666666666 | 0.8 | ||
| LVL-slowFast | 0.013333333333333334 | 0.0 | ||
| LVL-slowFast | 0.013233333333333335 | 0.6 | ||
| LVL-slowFast | 0.011916666666666666 | 0.7 | ||
| LVL-slowFast | 0.011233333333333335 | 0.1 | ||
| LVL-slowFast | 0.01185 | 1.0 | ||
| LVL-slowFast | 0.012083333333333333 | 0.8 | ||
| LVL-slowFast | 0.010583333333333333 | 0.5 | ||
| LVL-slowFast | 0.011116666666666667 | 0.3 | ||
| LVL-slowFast | 0.010616666666666667 | 0.4 | ||
| LVL-slowFast | 0.012750000000000001 | 0.7 | ||
| LVL-slowFast | 0.013000000000000001 | 0.4 | ||
| LVL-slowFast | 0.011649999999999999 | 1.0 | ||
| LVL-slowFast | 0.009616666666666666 | 0.1 | ||
| LVL-slowFast | 0.009183333333333333 | 0.4 | ||
| LVL-slowFast | 0.009516666666666666 | 1.0 | ||
| LVL-slowFast | 0.010333333333333333 | 1.0 | ||
| LVL-slowFast | 0.009883333333333333 | 0.8 | ||
| LVL-slowFast | 0.0138 | 0.7 | ||
| LVL-slowFast | 0.00835 | 0.2 | ||
| LVL-slowFast | 0.013016666666666668 | 0.9 | ||
| LVL-slowFast | 0.008733333333333334 | 0.2 | ||
| LVL-slowFast | 0.009616666666666666 | 0.5 | ||
| LVL-slowFast | 0.013683333333333332 | 0.3 | ||
| LVL-slowFast | 0.009816666666666666 | 0.9 | ||
| LVL-slowFast | 0.0141 | 0.0 | ||
| LVL-slowFast | 0.013683333333333332 | 0.2 | ||
| LVL-slowFast | 0.0107 | 0.3 | ||
| LVL-slowFast | 0.013000000000000001 | 0.7 | ||
| LVL-slowFast | 0.0106 | 0.8 | ||
| LVL-slowFast | 0.014633333333333333 | 0.6 | ||
| LVL-slowFast | 0.008783333333333334 | 1.0 | ||
| LVL-slowFast | 0.01045 | 0.1 | ||
| LVL-slowFast | 0.01155 | 0.4 | ||
| LVL-slowFast | 0.010116666666666666 | 0.0 | ||
| LVL-slowFast | 0.01055 | 0.4 | ||
| LVL-slowFast | 0.01155 | 0.4 | ||
| LVL-slowFast | 0.008666666666666666 | 0.1 | ||
| LVL-slowFast | 0.013466666666666667 | 0.5 | ||
| LVL-slowFast | 0.012033333333333333 | 0.9 | ||
| LVL-slowFast | 0.014416666666666666 | 0.7 | ||
| LVL-slowFast | 0.011166666666666667 | 1.0 | ||
| LVL-slowFast | 0.012966666666666666 | 0.6 | ||
| LVL-slowFast | 0.011250000000000001 | 0.5 | ||
| LVL-slowFast | 0.010016666666666667 | 0.5 | ||
| LVL-slowFast | 0.0106 | 0.4 | ||
| LVL-slowFast | 0.014283333333333334 | 0.3 | ||
| LVL-slowFast | 0.012733333333333334 | 0.0 | ||
| LVL-slowFast | 0.009566666666666666 | 0.5 | ||
| LVL-slowFast | 0.011649999999999999 | 0.9 | ||
| LVL-slowFast | 0.011433333333333334 | 0.5 | ||
| LVL-slowFast | 0.013816666666666666 | 0.5 | ||
| LVL-slowFast | 0.008783333333333334 | 1.0 | ||
| LVL-slowFast | 0.01265 | 0.9 | ||
| LVL-slowFast | 0.009216666666666668 | 0.6 | ||
| LVL-slowFast | 0.012266666666666667 | 0.3 | 0.2222222222222222 | |
| LVL-slowFast | 0.012266666666666667 | 0.3 | ||
| LVL-slowFast | 0.014716666666666666 | 0.0 | ||
| LVL-slowFast | 0.013333333333333334 | 0.4 | ||
| LVL-slowFast | 0.012316666666666667 | 0.0 | ||
| LVL-slowFast | 0.01095 | 0.6 | ||
| LVL-slowFast | 0.010583333333333333 | 1.0 | ||
| LVL-slowFast | 0.014933333333333333 | 0.2 | ||
| LVL-slowFast | 0.01185 | 0.9 | ||
| LVL-slowFast | 0.010516666666666667 | 0.1 | ||
| LVL-slowFast | 0.013483333333333335 | 0.3 | ||
| LVL-slowFast | 0.009083333333333334 | 0.4 | ||
| LVL-slowFast | 0.009783333333333333 | 0.3 | ||
| LVL-slowFast | 0.013216666666666666 | 0.0 | ||
| LVL-slowFast | 0.008433333333333333 | 0.8 | ||
| LVL-slowFast | 0.014633333333333333 | 0.5 | ||
| LVL-slowFast | 0.014716666666666666 | 0.5 | ||
| LVL-slowFast | 0.0118 | 0.6 | ||
| LVL-slowFast | 0.009183333333333333 | 0.8 | ||
| LVL-slowFast | 0.008583333333333333 | 0.1 | ||
| LVL-slowFast | 0.013033333333333334 | 0.6 | ||
| LVL-slowFast | 0.014666666666666666 | 0.4 | ||
| LVL-slowFast | 0.011966666666666665 | 0.6 | ||
| LVL-slowFast | 0.008716666666666668 | 0.8 | ||
| LVL-slowFast | 0.010283333333333334 | 0.8 | ||
| LVL-slowFast | 0.013466666666666667 | 0.8 | ||
| LVL-slowFast | 0.008616666666666667 | 0.8 | ||
| LVL-slowFast | 0.008366666666666666 | 0.2 | ||
| LVL-slowFast | 0.009083333333333334 | 0.0 | ||
| LVL-slowFast | 0.009366666666666667 | 0.6 | ||
| LVL-slowFast | 0.008533333333333334 | 0.1 | ||
| LVL-slowFast | 0.008783333333333334 | 0.2 | ||
| LVL-slowFast | 0.008466666666666667 | 0.7 | ||
| LVL-slowFast | 0.009266666666666668 | 0.1 | ||
| LVL-slowFast | 0.00855 | 0.7 | ||
| LVL-slowFast | 0.01375 | 0.1 | ||
| LVL-slowFast | 0.01 | 0.5 | ||
| LVL-slowFast | 0.012333333333333333 | 0.6 | ||
| LVL-slowFast | 0.013883333333333333 | 0.9 | ||
| LVL-slowFast | 0.014883333333333333 | 0.5 | ||
| LVL-slowFast | 0.0127 | 0.5 | ||
| LVL-slowFast | 0.009566666666666666 | 0.0 | ||
| LVL-slowFast | 0.011716666666666665 | 0.4 | ||
| LVL-slowFast | 0.010366666666666666 | 0.8 | ||
| LVL-slowFast | 0.012133333333333333 | 0.6 | ||
| LVL-slowFast | 0.0091 | 0.4 | ||
| LVL-slowFast | 0.00865 | 0.2 | ||
| LVL-slowFast | 0.012983333333333335 | 0.8 | ||
| LVL-slowFast | 0.008616666666666667 | 0.3 | ||
| LVL-slowFast | 0.008950000000000001 | 0.7 | ||
| LVL-slowFast | 0.01385 | 0.7 | ||
| LVL-slowFast | 0.0136 | 0.2 | ||
| LVL-slowFast | 0.013183333333333333 | 0.2 | ||
| LVL-slowFast | 0.008583333333333333 | 0.9 | ||
| LVL-slowFast | 0.01065 | 0.8 | ||
| LVL-slowFast | 0.014366666666666666 | 0.3 | ||
| LVL-slowFast | 0.0143 | 0.5 | ||
| LVL-slowFast | 0.009183333333333333 | 0.4 | ||
| LVL-slowFast | 0.011250000000000001 | 0.1 | ||
| LVL-slowFast | 0.01045 | 0.2 | ||
| LVL-slowFast | 0.010883333333333333 | 0.8 | ||
| LVL-slowFast | 0.013283333333333334 | 0.7 | ||
| LVL-slowFast | 0.01175 | 0.9 | ||
| LVL-slowFast | 0.010783333333333334 | 1.0 | ||
| LVL-slowFast | 0.013466666666666667 | 0.8 | ||
| LVL-slowFast | 0.013649999999999999 | 0.9 | ||
| LVL-slowFast | 0.009233333333333335 | 0.4 | ||
| LVL-slowFast | 0.010033333333333333 | 0.2 | ||
| LVL-slowFast | 0.01355 | 0.0 | ||
| LVL-slowFast | 0.012516666666666667 | 0.8 | ||
| LVL-slowFast | 0.014266666666666667 | 0.8 | ||
| LVL-slowFast | 0.009266666666666668 | 0.2 | ||
| LVL-slowFast | 0.014683333333333333 | 0.5 | ||
| LVL-slowFast | 0.013383333333333334 | 1.0 | ||
| LVL-slowFast | 0.010116666666666666 | 0.6 | ||
| LVL-slowFast | 0.011983333333333334 | 0.9 | ||
| LVL-slowFast | 0.0123 | 0.6 | ||
| LVL-slowFast | 0.014783333333333334 | 0.0 | ||
| LVL-slowFast | 0.011416666666666667 | 0.6 | ||
| LVL-slowFast | 0.008416666666666666 | 0.0 | ||
| LVL-slowFast | 0.0148 | 0.5 | ||
| LVL-slowFast | 0.00865 | 0.7 | ||
| LVL-slowFast | 0.013250000000000001 | 0.4 | ||
| LVL-slowFast | 0.01085 | 0.6 | ||
| LVL-slowFast | 0.009666666666666665 | 0.7 | ||
| LVL-slowFast | 0.0148 | 0.0 | ||
| LVL-slowFast | 0.012750000000000001 | 0.5 | ||
| LVL-slowFast | 0.0139 | 0.7 | ||
| LVL-slowFast | 0.010133333333333333 | 1.0 | ||
| LVL-slowFast | 0.00905 | 1.0 | ||
| LVL-slowFast | 0.0127 | 0.8 | ||
| LVL-slowFast | 0.012666666666666666 | 1.0 | ||
| LVL-slowFast | 0.012933333333333333 | 0.3 | ||
| LVL-slowFast | 0.014 | 0.2 | ||
| LVL-slowFast | 0.012016666666666667 | 0.9 | ||
| LVL-slowFast | 0.00835 | 0.1 | ||
| LVL-slowFast | 0.014183333333333333 | 0.3 | ||
| LVL-slowFast | 0.009699999999999999 | 0.4 | ||
| LVL-slowFast | 0.011716666666666665 | 0.1 | ||
| LVL-slowFast | 0.010616666666666667 | 0.5 | ||
| LVL-slowFast | 0.01465 | 0.3 | ||
| LVL-slowFast | 0.0144 | 0.2 | ||
| LVL-slowFast | 0.014750000000000001 | 0.4 | ||
| LVL-slowFast | 0.01145 | 0.8 | ||
| LVL-slowFast | 0.008700000000000001 | 1.0 | ||
| LVL-slowFast | 0.012483333333333334 | 0.9 | ||
| LVL-slowFast | 0.012216666666666666 | 0.3 | ||
| LVL-slowFast | 0.011066666666666667 | 0.9 | ||
| LVL-slowFast | 0.01485 | 0.9 | ||
| LVL-slowFast | 0.01 | 0.4 | ||
| LVL-slowFast | 0.009233333333333335 | 0.1 | ||
| LVL-slowFast | 0.012633333333333333 | 0.9 | ||
| LVL-slowFast | 0.012216666666666666 | 0.0 | ||
| LVL-slowFast | 0.011866666666666666 | 0.7 | ||
| LVL-slowFast | 0.012533333333333334 | 0.6 | ||
| LVL-slowFast | 0.010133333333333333 | 0.5 | ||
| LVL-slowFast | 0.008950000000000001 | 0.2 | ||
| LVL-slowFast | 0.00935 | 0.0 | ||
| LVL-slowFast | 0.014266666666666667 | 0.7 | ||
| LVL-slowFast | 0.010416666666666666 | 0.4 | ||
| LVL-slowFast | 0.014633333333333333 | 0.8 | ||
| LVL-slowFast | 0.012966666666666666 | 0.4 | ||
| LVL-slowFast | 0.0123 | 0.8 | ||
| LVL-slowFast | 0.013566666666666666 | 0.9 | ||
| LVL-slowFast | 0.012283333333333334 | 0.7 | ||
| LVL-slowFast | 0.008383333333333333 | 0.6 | ||
| LVL-slowFast | 0.009566666666666666 | 0.4 | ||
| LVL-slowFast | 0.008433333333333333 | 0.6 | ||
| LVL-slowFast | 0.01145 | 0.6 | ||
| LVL-slowFast | 0.009516666666666666 | 0.1 | ||
| LVL-slowFast | 0.014750000000000001 | 0.5 | ||
| LVL-slowFast | 0.008583333333333333 | 0.0 | ||
| LVL-slowFast | 0.0132 | 1.0 | ||
| LVL-slowFast | 0.011166666666666667 | 0.1 | ||
| LVL-slowFast | 0.011233333333333335 | 0.1 | ||
| LVL-slowFast | 0.013016666666666668 | 0.0 | ||
| LVL-slowFast | 0.011250000000000001 | 0.9 | ||
| LVL-slowFast | 0.01005 | 0.8 | ||
| LVL-slowFast | 0.011283333333333334 | 0.4 | ||
| LVL-slowFast | 0.013683333333333332 | 0.5 | ||
| LVL-slowFast | 0.0098 | 0.3 | ||
| LVL-slowFast | 0.013916666666666666 | 0.5 | ||
| LVL-slowFast | 0.01025 | 1.0 | ||
| LVL-slowFast | 0.0139 | 0.5 | ||
| LVL-slowFast | 0.013633333333333332 | 0.4 | ||
| LVL-slowFast | 0.008483333333333334 | 0.7 | ||
| LVL-slowFast | 0.0123 | 0.8 | ||
| LVL-slowFast | 0.01215 | 1.0 | ||
| LVL-slowFast | 0.013300000000000001 | 0.4 | ||
| LVL-slowFast | 0.012566666666666667 | 0.0 | ||
| LVL-slowFast | 0.011333333333333334 | 0.5 | ||
| LVL-slowFast | 0.012750000000000001 | 0.7 | ||
| LVL-slowFast | 0.01415 | 0.4 | ||
| LVL-slowFast | 0.010566666666666667 | 0.9 | ||
| LVL-slowFast | 0.012766666666666667 | 0.2 | ||
| LVL-slowFast | 0.00905 | 0.9 | ||
| LVL-slowFast | 0.011533333333333333 | 0.8 | ||
| LVL-slowFast | 0.011916666666666666 | 0.4 | ||
| LVL-slowFast | 0.01215 | 0.8 | ||
| LVL-slowFast | 0.013533333333333335 | 0.6 | ||
| LVL-slowFast | 0.009883333333333333 | 0.5 | ||
| LVL-slowFast | 0.01345 | 0.9 | ||
| LVL-slowFast | 0.011033333333333334 | 0.6 | ||
| LVL-slowFast | 0.009283333333333334 | 0.4 | ||
| LVL-slowFast | 0.012416666666666666 | 0.4 | ||
| LVL-slowFast | 0.008366666666666666 | 0.2 | ||
| LVL-slowFast | 0.013433333333333334 | 0.0 | ||
| LVL-slowFast | 0.01415 | 0.8 | ||
| LVL-slowFast | 0.014133333333333333 | 1.0 | ||
| LVL-slowFast | 0.011383333333333334 | 0.6 | ||
| LVL-slowFast | 0.013500000000000002 | 1.0 | ||
| LVL-slowFast | 0.012933333333333333 | 0.4 | ||
| LVL-slowFast | 0.013816666666666666 | 0.3 | ||
| LVL-slowFast | 0.00835 | 0.3 | ||
| LVL-slowFast | 0.009833333333333333 | 0.1 | ||
| LVL-slowFast | 0.009266666666666668 | 0.1 | ||
| LVL-slowFast | 0.01005 | 0.6 | ||
| LVL-slowFast | 0.010233333333333334 | 0.2 | ||
| LVL-slowFast | 0.011283333333333334 | 0.5 | ||
| LVL-slowFast | 0.01055 | 0.6 | ||
| LVL-slowFast | 0.013566666666666666 | 0.3 | ||
| LVL-slowFast | 0.014366666666666666 | 0.0 | ||
| LVL-slowFast | 0.011949999999999999 | 0.7 | ||
| LVL-slowFast | 0.0129 | 0.5 | ||
| LVL-slowFast | 0.013566666666666666 | 1.0 | ||
| LVL-slowFast | 0.012750000000000001 | 0.7 | ||
| LVL-slowFast | 0.0146 | 1.0 | ||
| LVL-slowFast | 0.0124 | 0.5 | ||
| LVL-slowFast | 0.011649999999999999 | 1.0 | 0.4444444444444444 | |
| LVL-slowFast | 0.008733333333333334 | 0.6 | ||
| LVL-slowFast | 0.011716666666666665 | 0.2 | ||
| LVL-slowFast | 0.008533333333333334 | 0.8 | ||
| LVL-slowFast | 0.010133333333333333 | 0.2 | ||
| LVL-slowFast | 0.009833333333333333 | 0.2 | ||
| LVL-slowFast | 0.014733333333333333 | 0.5 | ||
| LVL-slowFast | 0.011899999999999999 | 0.3 | ||
| LVL-slowFast | 0.01465 | 0.8 | ||
| LVL-slowFast | 0.013333333333333334 | 0.1 | ||
| LVL-slowFast | 0.012866666666666667 | 0.5 | ||
| LVL-slowFast | 0.013250000000000001 | 0.9 | ||
| LVL-slowFast | 0.012983333333333335 | 0.1 | ||
| LVL-slowFast | 0.013516666666666668 | 1.0 | ||
| LVL-slowFast | 0.012 | 0.7 | ||
| LVL-slowFast | 0.0143 | 0.1 | ||
| LVL-slowFast | 0.010766666666666667 | 1.0 | ||
| LVL-slowFast | 0.012266666666666667 | 0.8 | ||
| LVL-slowFast | 0.013000000000000001 | 0.0 | ||
| LVL-slowFast | 0.009266666666666668 | 0.7 | ||
| LVL-slowFast | 0.010016666666666667 | 0.8 | ||
| LVL-slowFast | 0.009383333333333332 | 0.4 | ||
| LVL-slowFast | 0.009666666666666665 | 0.6 | ||
| LVL-slowFast | 0.008516666666666667 | 0.9 | ||
| LVL-slowFast | 0.012933333333333333 | 0.5 | ||
| LVL-slowFast | 0.014283333333333334 | 0.9 | ||
| LVL-slowFast | 0.012883333333333333 | 0.2 | ||
| LVL-slowFast | 0.01465 | 0.9 | ||
| LVL-slowFast | 0.011216666666666668 | 0.2 | ||
| LVL-slowFast | 0.014383333333333333 | 0.4 | ||
| LVL-slowFast | 0.010566666666666667 | 0.6 | ||
| LVL-slowFast | 0.01305 | 0.2 | ||
| LVL-slowFast | 0.010033333333333333 | 0.5 | ||
| LVL-slowFast | 0.009016666666666668 | 0.3 | ||
| LVL-slowFast | 0.009866666666666666 | 0.3 | ||
| LVL-slowFast | 0.012916666666666667 | 0.4 | ||
| LVL-slowFast | 0.010566666666666667 | 0.5 | ||
| LVL-slowFast | 0.01255 | 0.0 | ||
| LVL-slowFast | 0.013083333333333334 | 0.2 | ||
| LVL-slowFast | 0.01455 | 0.6 | ||
| LVL-slowFast | 0.014716666666666666 | 1.0 | ||
| LVL-slowFast | 0.011066666666666667 | 0.7 | ||
| LVL-slowFast | 0.012166666666666666 | 0.7 | ||
| LVL-slowFast | 0.008966666666666668 | 0.9 | ||
| LVL-slowFast | 0.010033333333333333 | 0.8 | ||
| LVL-slowFast | 0.008383333333333333 | 0.8 | ||
| LVL-slowFast | 0.013216666666666666 | 0.5 | ||
| LVL-slowFast | 0.014 | 0.9 | ||
| LVL-slowFast | 0.01285 | 0.2 | ||
| LVL-slowFast | 0.009383333333333332 | 0.2 | ||
| LVL-slowFast | 0.011416666666666667 | 0.5 | ||
| LVL-slowFast | 0.0149 | 0.0 | ||
| LVL-slowFast | 0.014516666666666667 | 0.4 | ||
| LVL-slowFast | 0.01495 | 0.4 | ||
| LVL-slowFast | 0.011633333333333332 | 0.9 | ||
| LVL-slowFast | 0.009083333333333334 | 0.2 | ||
| LVL-slowFast | 0.012116666666666666 | 0.1 | ||
| LVL-slowFast | 0.0108 | 0.5 | ||
| LVL-slowFast | 0.011683333333333332 | 0.9 | ||
| LVL-slowFast | 0.012016666666666667 | 0.4 | ||
| LVL-slowFast | 0.0145 | 0.9 | ||
| LVL-slowFast | 0.01145 | 0.7 | ||
| LVL-slowFast | 0.012766666666666667 | 0.4 | ||
| LVL-slowFast | 0.012750000000000001 | 0.9 | ||
| LVL-slowFast | 0.012666666666666666 | 0.0 | ||
| LVL-slowFast | 0.009666666666666665 | 0.9 | ||
| LVL-slowFast | 0.008933333333333333 | 0.9 | ||
| LVL-slowFast | 0.008516666666666667 | 1.0 | ||
| LVL-slowFast | 0.011833333333333333 | 0.5 | ||
| LVL-slowFast | 0.014666666666666666 | 0.1 | ||
| LVL-slowFast | 0.012933333333333333 | 1.0 | ||
| LVL-slowFast | 0.011516666666666666 | 0.1 | ||
| LVL-slowFast | 0.011066666666666667 | 0.7 | ||
| LVL-slowFast | 0.008383333333333333 | 0.1 | ||
| LVL-slowFast | 0.0125 | 0.4 | ||
| LVL-slowFast | 0.01415 | 0.3 | ||
| LVL-slowFast | 0.0085 | 0.9 | ||
| LVL-slowFast | 0.013833333333333333 | 0.5 | ||
| LVL-slowFast | 0.012983333333333335 | 0.4 | ||
| LVL-slowFast | 0.009166666666666667 | 0.4 | ||
| LVL-slowFast | 0.008866666666666667 | 0.1 | ||
| LVL-slowFast | 0.013233333333333335 | 0.7 | ||
| LVL-slowFast | 0.010616666666666667 | 0.5 | ||
| LVL-slowFast | 0.01115 | 0.0 | ||
| LVL-slowFast | 0.009949999999999999 | 0.0 | ||
| LVL-slowFast | 0.010083333333333333 | 0.8 | ||
| LVL-slowFast | 0.012266666666666667 | 0.4 | ||
| LVL-slowFast | 0.013383333333333334 | 0.6 | ||
| LVL-slowFast | 0.01285 | 0.2 | ||
| LVL-slowFast | 0.008450000000000001 | 0.7 | ||
| LVL-slowFast | 0.014366666666666666 | 0.5 | ||
| LVL-slowFast | 0.011083333333333334 | 0.9 | ||
| LVL-slowFast | 0.009316666666666668 | 0.6 | ||
| LVL-slowFast | 0.011816666666666666 | 1.0 | ||
| LVL-slowFast | 0.012566666666666667 | 0.4 | ||
| LVL-slowFast | 0.011883333333333333 | 1.0 | ||
| LVL-slowFast | 0.009633333333333332 | 0.2 | ||
| LVL-slowFast | 0.011566666666666666 | 0.2 | ||
| LVL-slowFast | 0.013083333333333334 | 0.1 | ||
| LVL-slowFast | 0.013266666666666668 | 0.6 | ||
| LVL-slowFast | 0.008716666666666668 | 0.7 | ||
| LVL-slowFast | 0.013333333333333334 | 0.9 | ||
| LVL-slowFast | 0.010433333333333333 | 0.1 | ||
| LVL-slowFast | 0.011133333333333334 | 0.7 | ||
| LVL-slowFast | 0.013433333333333334 | 0.0 | ||
| LVL-slowFast | 0.013566666666666666 | 0.6 | ||
| LVL-slowFast | 0.0107 | 0.5 | ||
| LVL-slowFast | 0.013916666666666666 | 0.3 | ||
| LVL-slowFast | 0.01415 | 1.0 | ||
| LVL-slowFast | 0.008983333333333334 | 0.8 | ||
| LVL-slowFast | 0.01065 | 0.1 | ||
| LVL-slowFast | 0.009216666666666668 | 0.0 | ||
| LVL-slowFast | 0.011133333333333334 | 0.3 | ||
| LVL-slowFast | 0.01375 | 0.3 | ||
| LVL-slowFast | 0.011133333333333334 | 0.3 | ||
| LVL-slowFast | 0.010566666666666667 | 0.6 | ||
| LVL-slowFast | 0.010233333333333334 | 0.1 | ||
| LVL-slowFast | 0.01235 | 0.8 | ||
| LVL-slowFast | 0.011916666666666666 | 1.0 | ||
| LVL-slowFast | 0.009783333333333333 | 0.4 | ||
| LVL-slowFast | 0.014 | 0.4 | ||
| LVL-slowFast | 0.010466666666666668 | 0.2 | ||
| LVL-slowFast | 0.013083333333333334 | 0.5 | ||
| LVL-slowFast | 0.012433333333333333 | 0.2 | ||
| LVL-slowFast | 0.009200000000000002 | 0.6 | ||
| LVL-slowFast | 0.010333333333333333 | 0.3 | ||
| LVL-slowFast | 0.014516666666666667 | 0.1 | ||
| LVL-slowFast | 0.01055 | 0.3 | ||
| LVL-slowFast | 0.008466666666666667 | 0.9 | ||
| LVL-slowFast | 0.011983333333333334 | 1.0 | ||
| LVL-slowFast | 0.013566666666666666 | 0.7 | ||
| LVL-slowFast | 0.011716666666666665 | 0.2 | ||
| LVL-slowFast | 0.010083333333333333 | 0.0 | ||
| LVL-slowFast | 0.011516666666666666 | 0.9 | ||
| LVL-slowFast | 0.009883333333333333 | 0.6 | ||
| LVL-slowFast | 0.009416666666666665 | 0.8 | ||
| LVL-slowFast | 0.0145 | 0.4 | ||
| LVL-slowFast | 0.008416666666666666 | 0.5 | ||
| LVL-slowFast | 0.009066666666666667 | 0.6 | ||
| LVL-slowFast | 0.012199999999999999 | 0.2 | ||
| LVL-slowFast | 0.014716666666666666 | 0.1 | ||
| LVL-slowFast | 0.013683333333333332 | 0.0 | ||
| LVL-slowFast | 0.009016666666666668 | 0.9 | ||
| LVL-slowFast | 0.00885 | 0.7 | ||
| LVL-slowFast | 0.0118 | 1.0 | ||
| LVL-slowFast | 0.01295 | 0.8 | ||
| LVL-slowFast | 0.0086 | 0.1 | ||
| LVL-slowFast | 0.01255 | 0.4 | ||
| LVL-slowFast | 0.011016666666666668 | 1.0 | ||
| LVL-slowFast | 0.01255 | 0.1 | 0.4444444444444444 | |
| LVL-slowFast | 0.0132 | 0.3 | 0.4444444444444444 | |
| LVL-slowFast | 0.010783333333333334 | 0.7 | ||
| LVL-slowFast | 0.008566666666666667 | 0.9 | ||
| LVL-slowFast | 0.010933333333333333 | 0.6 | ||
| LVL-slowFast | 0.01485 | 0.8 | ||
| LVL-slowFast | 0.011683333333333332 | 0.0 | ||
| LVL-slowFast | 0.00865 | 0.2 | ||
| LVL-slowFast | 0.01335 | 0.2 | ||
| LVL-slowFast | 0.0129 | 0.3 | 0.4444444444444444 | |
| LVL-slowFast | 0.011516666666666666 | 0.5 | ||
| LVL-slowFast | 0.0125 | 0.8 | ||
| LVL-slowFast | 0.012883333333333333 | 0.2 | ||
| LVL-slowFast | 0.009183333333333333 | 0.0 | ||
| LVL-slowFast | 0.012933333333333333 | 0.8 | ||
| LVL-slowFast | 0.014883333333333333 | 0.1 | ||
| LVL-slowFast | 0.011516666666666666 | 0.9 | ||
| LVL-slowFast | 0.0086 | 0.8 | ||
| LVL-slowFast | 0.012633333333333333 | 0.5 | ||
| LVL-slowFast | 0.0086 | 1.0 | ||
| LVL-slowFast | 0.011033333333333334 | 0.9 | ||
| LVL-slowFast | 0.009633333333333332 | 0.4 | ||
| LVL-slowFast | 0.011250000000000001 | 0.2 | ||
| LVL-slowFast | 0.010016666666666667 | 0.7 | ||
| LVL-slowFast | 0.012966666666666666 | 0.1 | ||
| LVL-slowFast | 0.013766666666666667 | 0.5 | ||
| LVL-slowFast | 0.013883333333333333 | 0.0 | ||
| LVL-slowFast | 0.013250000000000001 | 0.6 | ||
| LVL-slowFast | 0.012199999999999999 | 0.5 | ||
| LVL-slowFast | 0.01385 | 0.0 | ||
| LVL-slowFast | 0.009966666666666667 | 0.8 | ||
| LVL-slowFast | 0.012333333333333333 | 0.3 | ||
| LVL-slowFast | 0.014783333333333334 | 0.3 | ||
| LVL-slowFast | 0.014616666666666667 | 0.4 | ||
| LVL-slowFast | 0.010733333333333334 | 0.4 | ||
| LVL-slowFast | 0.011616666666666666 | 0.7 | ||
| LVL-slowFast | 0.008733333333333334 | 0.6 | ||
| LVL-slowFast | 0.014233333333333332 | 1.0 | ||
| LVL-slowFast | 0.013000000000000001 | 1.0 | ||
| LVL-slowFast | 0.008766666666666667 | 0.8 | ||
| LVL-slowFast | 0.0149 | 0.0 | ||
| LVL-slowFast | 0.0138 | 0.8 | ||
| LVL-slowFast | 0.011416666666666667 | 0.0 | ||
| LVL-slowFast | 0.00865 | 0.8 | ||
| LVL-slowFast | 0.010483333333333334 | 0.8 | ||
| LVL-slowFast | 0.011616666666666666 | 0.6 | ||
| LVL-slowFast | 0.011466666666666665 | 0.3 | ||
| LVL-slowFast | 0.009283333333333334 | 0.4 | ||
| LVL-slowFast | 0.013733333333333332 | 0.1 | ||
| LVL-slowFast | 0.012183333333333332 | 0.2 | ||
| LVL-slowFast | 0.014750000000000001 | 0.9 | ||
| LVL-slowFast | 0.012433333333333333 | 0.5 | ||
| LVL-slowFast | 0.01285 | 0.8 | ||
| LVL-slowFast | 0.012183333333333332 | 0.3 | ||
| LVL-slowFast | 0.012766666666666667 | 0.1 | ||
| LVL-slowFast | 0.0127 | 0.1 | ||
| LVL-slowFast | 0.009883333333333333 | 0.1 | ||
| LVL-slowFast | 0.013483333333333335 | 0.3 | ||
| LVL-slowFast | 0.014 | 0.0 | ||
| LVL-slowFast | 0.012183333333333332 | 0.2 | ||
| LVL-slowFast | 0.010833333333333334 | 0.2 | ||
| LVL-slowFast | 0.011300000000000001 | 0.8 | ||
| LVL-slowFast | 0.013466666666666667 | 0.2 | ||
| LVL-slowFast | 0.010533333333333334 | 0.5 | ||
| LVL-slowFast | 0.012816666666666667 | 1.0 | ||
| LVL-slowFast | 0.011783333333333333 | 0.4 | ||
| LVL-slowFast | 0.011633333333333332 | 0.2 | ||
| LVL-slowFast | 0.009000000000000001 | 0.1 | ||
| LVL-slowFast | 0.014933333333333333 | 0.7 | ||
| LVL-slowFast | 0.014083333333333333 | 1.0 | ||
| LVL-slowFast | 0.013766666666666667 | 0.6 | ||
| LVL-slowFast | 0.013183333333333333 | 0.0 | ||
| LVL-slowFast | 0.012966666666666666 | 0.0 | ||
| LVL-slowFast | 0.0116 | 0.8 | ||
| LVL-slowFast | 0.013016666666666668 | 0.8 | ||
| LVL-slowFast | 0.013633333333333332 | 0.7 | ||
| LVL-slowFast | 0.0112 | 0.2 | ||
| LVL-slowFast | 0.012666666666666666 | 0.1 | ||
| LVL-slowFast | 0.009699999999999999 | 0.6 | ||
| LVL-slowFast | 0.011033333333333334 | 0.1 | ||
| LVL-slowFast | 0.013816666666666666 | 0.2 | ||
| LVL-slowFast | 0.008616666666666667 | 0.9 | ||
| LVL-slowFast | 0.0095 | 0.2 | ||
| LVL-slowFast | 0.014083333333333333 | 0.9 | ||
| LVL-slowFast | 0.01265 | 0.3 | ||
| LVL-slowFast | 0.008700000000000001 | 0.2 | ||
| LVL-slowFast | 0.01415 | 0.7 | ||
| LVL-slowFast | 0.0106 | 1.0 | ||
| LVL-slowFast | 0.009533333333333333 | 0.1 | ||
| LVL-slowFast | 0.014366666666666666 | 0.1 | ||
| LVL-slowFast | 0.013300000000000001 | 0.3 | ||
| LVL-slowFast | 0.009766666666666667 | 1.0 | ||
| LVL-slowFast | 0.01215 | 0.9 | ||
| LVL-slowFast | 0.009300000000000001 | 0.1 | ||
| LVL-slowFast | 0.011566666666666666 | 0.1 | ||
| LVL-slowFast | 0.014633333333333333 | 0.8 | ||
| LVL-slowFast | 0.013566666666666666 | 0.6 | ||
| LVL-slowFast | 0.011983333333333334 | 0.7 | ||
| LVL-slowFast | 0.010566666666666667 | 0.9 | ||
| LVL-slowFast | 0.01265 | 0.4 | ||
| LVL-slowFast | 0.009266666666666668 | 0.4 | ||
| LVL-slowFast | 0.014483333333333332 | 0.1 | ||
| LVL-slowFast | 0.009366666666666667 | 0.5 | ||
| LVL-slowFast | 0.010133333333333333 | 0.7 | ||
| LVL-slowFast | 0.009200000000000002 | 0.1 | ||
| LVL-slowFast | 0.010583333333333333 | 0.5 | ||
| LVL-slowFast | 0.00865 | 0.5 | ||
| LVL-slowFast | 0.012483333333333334 | 0.3 | ||
| LVL-slowFast | 0.013983333333333332 | 0.3 | ||
| LVL-slowFast | 0.012 | 0.2 | ||
| LVL-slowFast | 0.009649999999999999 | 0.5 | ||
| LVL-slowFast | 0.014666666666666666 | 0.7 | ||
| LVL-slowFast | 0.010750000000000001 | 0.8 | ||
| LVL-slowFast | 0.014183333333333333 | 0.5 | ||
| LVL-slowFast | 0.014983333333333333 | 0.3 | ||
| LVL-slowFast | 0.0091 | 0.1 | ||
| LVL-slowFast | 0.010416666666666666 | 0.5 | ||
| LVL-slowFast | 0.011333333333333334 | 0.5 | ||
| LVL-slowFast | 0.0148 | 0.3 | ||
| LVL-slowFast | 0.008816666666666667 | 0.5 | ||
| LVL-slowFast | 0.009200000000000002 | 0.8 | ||
| LVL-slowFast | 0.011000000000000001 | 0.4 | ||
| LVL-slowFast | 0.014966666666666666 | 0.7 | ||
| LVL-slowFast | 0.008700000000000001 | 1.0 | ||
| LVL-slowFast | 0.01315 | 0.1 | ||
| LVL-slowFast | 0.009816666666666666 | 0.9 | ||
| LVL-slowFast | 0.011266666666666668 | 0.0 | ||
| LVL-slowFast | 0.0129 | 0.1 | ||
| LVL-slowFast | 0.008783333333333334 | 0.2 | ||
| LVL-slowFast | 0.014633333333333333 | 0.6 | ||
| LVL-slowFast | 0.013000000000000001 | 0.7 | ||
| LVL-slowFast | 0.012533333333333334 | 0.1 | ||
| LVL-slowFast | 0.01035 | 0.2 | ||
| LVL-slowFast | 0.0085 | 0.9 | ||
| LVL-slowFast | 0.012516666666666667 | 1.0 | ||
| LVL-slowFast | 0.009483333333333333 | 0.9 | ||
| LVL-slowFast | 0.009616666666666666 | 0.2 | ||
| LVL-slowFast | 0.012233333333333334 | 1.0 | ||
| LVL-slowFast | 0.01175 | 1.0 | ||
| LVL-slowFast | 0.014966666666666666 | 0.2 | ||
| LVL-slowFast | 0.009483333333333333 | 0.2 | ||
| LVL-slowFast | 0.012783333333333334 | 0.4 | ||
| LVL-slowFast | 0.010016666666666667 | 0.9 | ||
| LVL-slowFast | 0.010366666666666666 | 0.5 | ||
| LVL-slowFast | 0.012533333333333334 | 1.0 | ||
| LVL-slowFast | 0.014116666666666666 | 0.1 | ||
| LVL-slowFast | 0.008916666666666666 | 0.2 | ||
| LVL-slowFast | 0.013683333333333332 | 0.4 | ||
| LVL-slowFast | 0.0121 | 0.3 | ||
| LVL-slowFast | 0.014183333333333333 | 0.4 | ||
| LVL-slowFast | 0.0121 | 0.2 | ||
| LVL-slowFast | 0.014983333333333333 | 0.7 | ||
| LVL-slowFast | 0.008416666666666666 | 0.3 | ||
| LVL-slowFast | 0.009233333333333335 | 0.3 | ||
| LVL-slowFast | 0.014533333333333334 | 0.9 | ||
| LVL-slowFast | 0.011666666666666665 | 0.8 | ||
| LVL-slowFast | 0.008433333333333333 | 0.0 | ||
| LVL-slowFast | 0.0127 | 0.9 | ||
| LVL-slowFast | 0.010183333333333332 | 0.4 | ||
| LVL-slowFast | 0.011899999999999999 | 0.4 | ||
| LVL-slowFast | 0.012166666666666666 | 0.7 | ||
| LVL-slowFast | 0.013233333333333335 | 0.3 | ||
| LVL-slowFast | 0.0146 | 0.3 | ||
| LVL-slowFast | 0.012633333333333333 | 0.8 | ||
| LVL-slowFast | 0.014116666666666666 | 0.0 | ||
| LVL-slowFast | 0.011250000000000001 | 0.9 | ||
| LVL-slowFast | 0.013683333333333332 | 0.0 | ||
| LVL-slowFast | 0.009000000000000001 | 0.9 | ||
| LVL-slowFast | 0.011533333333333333 | 0.7 | ||
| LVL-slowFast | 0.012633333333333333 | 0.6 | ||
| LVL-slowFast | 0.011633333333333332 | 0.5 | ||
| LVL-slowFast | 0.011466666666666665 | 0.0 | ||
| LVL-slowFast | 0.011283333333333334 | 0.7 | ||
| LVL-slowFast | 0.013949999999999999 | 0.3 | ||
| LVL-slowFast | 0.010316666666666667 | 0.4 | ||
| LVL-slowFast | 0.013366666666666667 | 0.6 | ||
| LVL-slowFast | 0.009200000000000002 | 0.1 | ||
| LVL-slowFast | 0.012183333333333332 | 0.4 | ||
| LVL-slowFast | 0.011000000000000001 | 0.8 | ||
| LVL-slowFast | 0.012516666666666667 | 0.8 | ||
| LVL-slowFast | 0.012383333333333333 | 0.1 | ||
| LVL-slowFast | 0.014666666666666666 | 0.4 | ||
| LVL-slowFast | 0.008533333333333334 | 0.0 | ||
| LVL-slowFast | 0.008816666666666667 | 0.3 | ||
| LVL-slowFast | 0.01445 | 1.0 | ||
| LVL-slowFast | 0.011433333333333334 | 0.0 | ||
| LVL-slowFast | 0.013266666666666668 | 0.4 | ||
| LVL-slowFast | 0.010133333333333333 | 0.5 | ||
| LVL-slowFast | 0.01355 | 0.4 | ||
| LVL-slowFast | 0.01345 | 0.0 | ||
| LVL-slowFast | 0.008816666666666667 | 0.2 | ||
| LVL-slowFast | 0.009766666666666667 | 0.2 | ||
| LVL-slowFast | 0.008883333333333333 | 0.9 | ||
| LVL-slowFast | 0.011766666666666667 | 0.1 | ||
| LVL-slowFast | 0.014966666666666666 | 0.8 | ||
| LVL-slowFast | 0.010783333333333334 | 0.9 | ||
| LVL-slowFast | 0.01335 | 0.0 | ||
| LVL-slowFast | 0.0127 | 0.7 | ||
| LVL-slowFast | 0.011883333333333333 | 0.1 | ||
| LVL-slowFast | 0.014283333333333334 | 0.7 | ||
| LVL-slowFast | 0.01095 | 0.6 | ||
| LVL-slowFast | 0.0131 | 0.9 | ||
| LVL-slowFast | 0.012483333333333334 | 0.5 | ||
| LVL-slowFast | 0.010816666666666667 | 0.4 | ||
| LVL-slowFast | 0.0139 | 0.7 | ||
| LVL-slowFast | 0.010199999999999999 | 0.2 | ||
| LVL-slowFast | 0.013516666666666668 | 0.3 | ||
| LVL-slowFast | 0.01425 | 0.9 | ||
| LVL-slowFast | 0.010433333333333333 | 0.7 | ||
| LVL-slowFast | 0.009899999999999999 | 0.9 | ||
| LVL-slowFast | 0.0044 | 0.6 | ||
| LVL-slowFast | 0.006616666666666667 | 0.2 | ||
| LVL-slowFast | 0.0034 | 0.4 | ||
| LVL-slowFast | 0.00605 | 0.5 | ||
| LVL-slowFast | 0.0041333333333333335 | 0.2 | ||
| LVL-slowFast | 0.0076 | 0.8 | ||
| LVL-slowFast | 0.007783333333333334 | 0.1 | ||
| LVL-slowFast | 0.004716666666666666 | 0.2 | ||
| LVL-slowFast | 0.004616666666666667 | 0.4 | ||
| LVL-slowFast | 0.008133333333333333 | 0.5 | ||
| LVL-slowFast | 0.0035499999999999998 | 0.1 | ||
| LVL-slowFast | 0.0081 | 0.8 | ||
| LVL-slowFast | 0.007233333333333333 | 0.7 | ||
| LVL-slowFast | 0.0069166666666666664 | 0.8 | ||
| LVL-slowFast | 0.004666666666666667 | 0.2 | ||
| LVL-slowFast | 0.007533333333333334 | 0.6 | ||
| LVL-slowFast | 0.0066 | 0.2 | ||
| LVL-slowFast | 0.006566666666666667 | 0.9 | ||
| LVL-slowFast | 0.0060999999999999995 | 0.9 | ||
| LVL-slowFast | 0.0067 | 0.6 | ||
| LVL-slowFast | 0.0066 | 0.5 | ||
| LVL-slowFast | 0.004716666666666666 | 0.7 | ||
| LVL-slowFast | 0.004600000000000001 | 0.2 | ||
| LVL-slowFast | 0.006033333333333333 | 0.3 | ||
| LVL-slowFast | 0.0066500000000000005 | 0.6 | ||
| LVL-slowFast | 0.005383333333333334 | 0.6 | ||
| LVL-slowFast | 0.0037833333333333334 | 0.5 | ||
| LVL-slowFast | 0.00745 | 0.3 | ||
| LVL-slowFast | 0.0038666666666666667 | 0.2 | ||
| LVL-slowFast | 0.005633333333333334 | 0.7 | ||
| LVL-slowFast | 0.0039499999999999995 | 0.7 | ||
| LVL-slowFast | 0.006516666666666667 | 0.5 | ||
| LVL-slowFast | 0.004833333333333333 | 0.9 | ||
| LVL-slowFast | 0.007516666666666667 | 0.2 | ||
| LVL-slowFast | 0.004716666666666666 | 0.9 | ||
| LVL-slowFast | 0.00415 | 0.9 | ||
| LVL-slowFast | 0.005516666666666667 | 0.4 | ||
| LVL-slowFast | 0.0045000000000000005 | 0.9 | ||
| LVL-slowFast | 0.007466666666666667 | 0.8 | ||
| LVL-slowFast | 0.0046500000000000005 | 0.0 | ||
| LVL-slowFast | 0.007483333333333333 | 0.2 | ||
| LVL-slowFast | 0.0041333333333333335 | 0.4 | ||
| LVL-slowFast | 0.007466666666666667 | 1.0 | ||
| LVL-slowFast | 0.00455 | 0.6 | ||
| LVL-slowFast | 0.005866666666666667 | 0.3 | ||
| LVL-slowFast | 0.006849999999999999 | 0.3 | ||
| LVL-slowFast | 0.0070999999999999995 | 1.0 | ||
| LVL-slowFast | 0.0042 | 1.0 | ||
| LVL-slowFast | 0.006083333333333333 | 0.7 | ||
| LVL-slowFast | 0.004316666666666667 | 0.5 | ||
| LVL-slowFast | 0.00445 | 0.7 | ||
| LVL-slowFast | 0.0063 | 0.0 | ||
| LVL-slowFast | 0.004216666666666666 | 0.3 | ||
| LVL-slowFast | 0.0059 | 0.4 | ||
| LVL-slowFast | 0.006066666666666666 | 0.3 | ||
| LVL-slowFast | 0.005483333333333334 | 0.1 | ||
| LVL-slowFast | 0.004849999999999999 | 0.2 | ||
| LVL-slowFast | 0.0078000000000000005 | 0.8 | ||
| LVL-slowFast | 0.0044666666666666665 | 0.0 | ||
| LVL-slowFast | 0.0066 | 0.2 | ||
| LVL-slowFast | 0.0036666666666666666 | 0.6 | ||
| LVL-slowFast | 0.006500000000000001 | 0.2 | ||
| LVL-slowFast | 0.005183333333333333 | 0.8 | ||
| LVL-slowFast | 0.005583333333333333 | 0.9 | ||
| LVL-slowFast | 0.0035666666666666668 | 0.6 | ||
| LVL-slowFast | 0.0074 | 0.3 | ||
| LVL-slowFast | 0.007216666666666666 | 0.4 | ||
| LVL-slowFast | 0.007716666666666667 | 0.5 | ||
| LVL-slowFast | 0.004350000000000001 | 0.0 | ||
| LVL-slowFast | 0.004416666666666667 | 1.0 | ||
| LVL-slowFast | 0.00755 | 0.8 | ||
| LVL-slowFast | 0.008266666666666667 | 0.5 | ||
| LVL-slowFast | 0.0081 | 0.2 | ||
| LVL-slowFast | 0.0055000000000000005 | 0.2 | ||
| LVL-slowFast | 0.005183333333333333 | 0.6 | ||
| LVL-slowFast | 0.00745 | 1.0 | ||
| LVL-slowFast | 0.003433333333333333 | 0.8 | ||
| LVL-slowFast | 0.007483333333333333 | 0.0 | ||
| LVL-slowFast | 0.006483333333333333 | 0.2 | ||
| LVL-slowFast | 0.006466666666666667 | 0.8 | ||
| LVL-slowFast | 0.006266666666666667 | 0.8 | ||
| LVL-slowFast | 0.006783333333333333 | 0.0 | ||
| LVL-slowFast | 0.0049833333333333335 | 0.8 | ||
| LVL-slowFast | 0.008 | 0.6 | ||
| LVL-slowFast | 0.005233333333333334 | 0.5 | ||
| LVL-slowFast | 0.0081 | 1.0 | ||
| LVL-slowFast | 0.006466666666666667 | 0.8 | ||
| LVL-slowFast | 0.0064 | 0.9 | ||
| LVL-slowFast | 0.005266666666666667 | 0.3 | ||
| LVL-slowFast | 0.006383333333333334 | 1.0 | ||
| LVL-slowFast | 0.007516666666666667 | 0.5 | ||
| LVL-slowFast | 0.0082 | 0.7 | ||
| LVL-slowFast | 0.005366666666666667 | 0.5 | ||
| LVL-slowFast | 0.0049 | 0.2 | ||
| LVL-slowFast | 0.005066666666666666 | 0.5 | ||
| LVL-slowFast | 0.007366666666666666 | 0.8 | ||
| LVL-slowFast | 0.00545 | 1.0 | ||
| LVL-slowFast | 0.007983333333333334 | 1.0 | ||
| LVL-slowFast | 0.007833333333333333 | 0.7 | ||
| LVL-slowFast | 0.0035166666666666666 | 0.9 | ||
| LVL-slowFast | 0.00735 | 0.8 | ||
| LVL-slowFast | 0.0033333333333333335 | 0.2 | ||
| LVL-slowFast | 0.0037500000000000003 | 1.0 | ||
| LVL-slowFast | 0.007 | 1.0 | ||
| LVL-slowFast | 0.007333333333333333 | 0.1 | ||
| LVL-slowFast | 0.004616666666666667 | 0.7 | ||
| LVL-slowFast | 0.0048 | 0.8 | ||
| LVL-slowFast | 0.0036666666666666666 | 0.7 | ||
| LVL-slowFast | 0.006266666666666667 | 0.6 | ||
| LVL-slowFast | 0.007516666666666667 | 0.2 | ||
| LVL-slowFast | 0.004266666666666667 | 0.4 | ||
| LVL-slowFast | 0.004716666666666666 | 0.3 | ||
| LVL-slowFast | 0.0051333333333333335 | 0.8 | ||
| LVL-slowFast | 0.0056 | 0.7 | ||
| LVL-slowFast | 0.004633333333333334 | 0.0 | ||
| LVL-slowFast | 0.0081 | 1.0 | ||
| LVL-slowFast | 0.007966666666666667 | 0.5 | ||
| LVL-slowFast | 0.008183333333333332 | 0.0 | ||
| LVL-slowFast | 0.0039499999999999995 | 0.1 | ||
| LVL-slowFast | 0.00525 | 0.0 | ||
| LVL-slowFast | 0.0057333333333333325 | 0.3 | ||
| LVL-slowFast | 0.004866666666666667 | 0.9 | ||
| LVL-slowFast | 0.0046500000000000005 | 0.0 | ||
| LVL-slowFast | 0.004633333333333334 | 0.8 | ||
| LVL-slowFast | 0.004916666666666666 | 1.0 | ||
| LVL-slowFast | 0.006516666666666667 | 0.2 | ||
| LVL-slowFast | 0.005033333333333333 | 0.5 | ||
| LVL-slowFast | 0.004666666666666667 | 0.7 | ||
| LVL-slowFast | 0.00625 | 0.3 | ||
| LVL-slowFast | 0.004966666666666666 | 0.4 | ||
| LVL-slowFast | 0.005316666666666667 | 0.2 | ||
| LVL-slowFast | 0.0069166666666666664 | 1.0 | ||
| LVL-slowFast | 0.004866666666666667 | 0.7 | ||
| LVL-slowFast | 0.0071333333333333335 | 0.7 | ||
| LVL-slowFast | 0.005666666666666667 | 0.8 | ||
| LVL-slowFast | 0.007916666666666666 | 0.9 | ||
| LVL-slowFast | 0.005483333333333334 | 0.5 | ||
| LVL-slowFast | 0.00425 | 0.1 | ||
| LVL-slowFast | 0.007516666666666667 | 0.3 | ||
| LVL-slowFast | 0.00635 | 0.7 | ||
| LVL-slowFast | 0.0054666666666666665 | 0.4 | ||
| LVL-slowFast | 0.00755 | 0.4 | ||
| LVL-slowFast | 0.003933333333333333 | 0.3 | ||
| LVL-slowFast | 0.007750000000000001 | 0.6 | ||
| LVL-slowFast | 0.0059499999999999996 | 0.7 | ||
| LVL-slowFast | 0.004583333333333333 | 0.0 | ||
| LVL-slowFast | 0.008316666666666667 | 0.7 | ||
| LVL-slowFast | 0.0038833333333333337 | 1.0 | ||
| LVL-slowFast | 0.006016666666666667 | 0.6 | ||
| LVL-slowFast | 0.004933333333333333 | 0.7 | ||
| LVL-slowFast | 0.007866666666666666 | 0.1 | ||
| LVL-slowFast | 0.005233333333333334 | 0.7 | ||
| LVL-slowFast | 0.0049833333333333335 | 0.6 | ||
| LVL-slowFast | 0.007383333333333334 | 0.5 | ||
| LVL-slowFast | 0.007583333333333333 | 0.9 | ||
| LVL-slowFast | 0.007566666666666667 | 0.6 | ||
| LVL-slowFast | 0.0056 | 0.4 | ||
| LVL-slowFast | 0.0034666666666666665 | 0.1 | ||
| LVL-slowFast | 0.00545 | 0.2 | ||
| LVL-slowFast | 0.0041333333333333335 | 0.6 | ||
| LVL-slowFast | 0.0042 | 1.0 | ||
| LVL-slowFast | 0.0069166666666666664 | 0.3 | ||
| LVL-slowFast | 0.007316666666666667 | 0.6 | ||
| LVL-slowFast | 0.00555 | 1.0 | ||
| LVL-slowFast | 0.007233333333333333 | 0.2 | ||
| LVL-slowFast | 0.007066666666666666 | 0.9 | ||
| LVL-slowFast | 0.007883333333333332 | 0.5 | ||
| LVL-slowFast | 0.008033333333333333 | 1.0 | ||
| LVL-slowFast | 0.00335 | 0.0 | ||
| LVL-slowFast | 0.00735 | 1.0 | ||
| LVL-slowFast | 0.00745 | 0.5 | ||
| LVL-slowFast | 0.005583333333333333 | 0.3 | ||
| LVL-slowFast | 0.0046500000000000005 | 0.1 | ||
| LVL-slowFast | 0.0033833333333333337 | 0.1 | ||
| LVL-slowFast | 0.005083333333333333 | 0.7 | ||
| LVL-slowFast | 0.004916666666666666 | 0.5 | ||
| LVL-slowFast | 0.00825 | 0.3 | ||
| LVL-slowFast | 0.008033333333333333 | 0.3 | ||
| LVL-slowFast | 0.005866666666666667 | 0.1 | ||
| LVL-slowFast | 0.004433333333333333 | 0.8 | ||
| LVL-slowFast | 0.0037333333333333333 | 1.0 | ||
| LVL-slowFast | 0.0042833333333333334 | 0.2 | ||
| LVL-slowFast | 0.006616666666666667 | 0.9 | ||
| LVL-slowFast | 0.007633333333333334 | 1.0 | ||
| LVL-slowFast | 0.007766666666666667 | 0.9 | ||
| LVL-slowFast | 0.004666666666666667 | 1.0 | ||
| LVL-slowFast | 0.007083333333333333 | 1.0 | ||
| LVL-slowFast | 0.0059499999999999996 | 0.0 | ||
| LVL-slowFast | 0.007816666666666666 | 1.0 | ||
| LVL-slowFast | 0.004716666666666666 | 0.8 | ||
| LVL-slowFast | 0.007883333333333332 | 0.7 | ||
| LVL-slowFast | 0.0037 | 0.9 | ||
| LVL-slowFast | 0.0035666666666666668 | 0.4 | ||
| LVL-slowFast | 0.004783333333333333 | 1.0 | ||
| LVL-slowFast | 0.004716666666666666 | 0.0 | ||
| LVL-slowFast | 0.0054 | 1.0 | ||
| LVL-slowFast | 0.004183333333333333 | 0.9 | ||
| LVL-slowFast | 0.005266666666666667 | 0.4 | ||
| LVL-slowFast | 0.007766666666666667 | 0.5 | ||
| LVL-slowFast | 0.006083333333333333 | 0.3 | ||
| LVL-slowFast | 0.006266666666666667 | 0.0 | ||
| LVL-slowFast | 0.004833333333333333 | 0.4 | ||
| LVL-slowFast | 0.006783333333333333 | 0.8 | ||
| LVL-slowFast | 0.004033333333333333 | 0.7 | ||
| LVL-slowFast | 0.0038666666666666667 | 0.8 | ||
| LVL-slowFast | 0.007750000000000001 | 0.0 | ||
| LVL-slowFast | 0.0057333333333333325 | 0.2 | ||
| LVL-slowFast | 0.005183333333333333 | 1.0 | ||
| LVL-slowFast | 0.00615 | 0.8 | ||
| LVL-slowFast | 0.006366666666666667 | 0.2 | ||
| LVL-slowFast | 0.0037 | 0.4 | ||
| LVL-slowFast | 0.008233333333333334 | 0.9 | ||
| LVL-slowFast | 0.0035 | 0.4 | ||
| LVL-slowFast | 0.0070999999999999995 | 0.8 | ||
| LVL-slowFast | 0.003533333333333333 | 0.4 | ||
| LVL-slowFast | 0.0039499999999999995 | 0.7 | ||
| LVL-slowFast | 0.006066666666666666 | 0.1 | ||
| LVL-slowFast | 0.005433333333333333 | 0.5 | ||
| LVL-slowFast | 0.0044 | 1.0 | 0.5555555555555556 | |
| LVL-slowFast | 0.005233333333333334 | 1.0 | ||
| LVL-slowFast | 0.0056500000000000005 | 0.1 | ||
| LVL-slowFast | 0.004183333333333333 | 0.4 | ||
| LVL-slowFast | 0.004233333333333334 | 0.1 | ||
| LVL-slowFast | 0.0062 | 1.0 | ||
| LVL-slowFast | 0.00415 | 0.4 | ||
| LVL-slowFast | 0.004433333333333333 | 0.7 | ||
| LVL-slowFast | 0.008316666666666667 | 0.8 | ||
| LVL-slowFast | 0.007750000000000001 | 1.0 | ||
| LVL-slowFast | 0.004966666666666666 | 0.3 | ||
| LVL-slowFast | 0.008 | 1.0 | ||
| LVL-slowFast | 0.004616666666666667 | 0.7 | ||
| LVL-slowFast | 0.007266666666666667 | 0.0 | ||
| LVL-slowFast | 0.0038333333333333336 | 0.3 | ||
| LVL-slowFast | 0.004533333333333334 | 0.3 | ||
| LVL-slowFast | 0.006316666666666667 | 0.5 | ||
| LVL-slowFast | 0.006066666666666666 | 0.2 | ||
| LVL-slowFast | 0.00635 | 0.9 | ||
| LVL-slowFast | 0.006066666666666666 | 0.1 | ||
| LVL-slowFast | 0.006366666666666667 | 0.5 | ||
| LVL-slowFast | 0.007366666666666666 | 0.3 | ||
| LVL-slowFast | 0.006583333333333333 | 0.2 | ||
| LVL-slowFast | 0.0049833333333333335 | 0.1 | ||
| LVL-slowFast | 0.0072833333333333335 | 0.0 | ||
| LVL-slowFast | 0.0035833333333333333 | 0.6 | ||
| LVL-slowFast | 0.007966666666666667 | 0.5 | ||
| LVL-slowFast | 0.006333333333333333 | 0.0 | ||
| LVL-slowFast | 0.003533333333333333 | 1.0 | ||
| LVL-slowFast | 0.005849999999999999 | 0.2 | ||
| LVL-slowFast | 0.0044666666666666665 | 0.0 | ||
| LVL-slowFast | 0.008033333333333333 | 1.0 | ||
| LVL-slowFast | 0.006616666666666667 | 0.9 | ||
| LVL-slowFast | 0.007633333333333334 | 0.5 | ||
| LVL-slowFast | 0.0033833333333333337 | 0.7 | ||
| LVL-slowFast | 0.004666666666666667 | 0.8 | ||
| LVL-slowFast | 0.004366666666666667 | 0.9 | ||
| LVL-slowFast | 0.0076500000000000005 | 0.8 | ||
| LVL-slowFast | 0.006849999999999999 | 0.7 | ||
| LVL-slowFast | 0.0034666666666666665 | 0.0 | ||
| LVL-slowFast | 0.0069 | 0.5 | ||
| LVL-slowFast | 0.0078000000000000005 | 0.0 | ||
| LVL-slowFast | 0.004033333333333333 | 1.0 | ||
| LVL-slowFast | 0.006933333333333333 | 0.5 | ||
| LVL-slowFast | 0.008183333333333332 | 0.7 | ||
| LVL-slowFast | 0.004333333333333333 | 0.7 | ||
| LVL-slowFast | 0.007116666666666666 | 0.1 | ||
| LVL-slowFast | 0.005933333333333333 | 0.6 | ||
| LVL-slowFast | 0.0054666666666666665 | 0.6 | ||
| LVL-slowFast | 0.003966666666666666 | 1.0 | ||
| LVL-slowFast | 0.00415 | 0.5 | ||
| LVL-slowFast | 0.005983333333333333 | 0.6 | ||
| LVL-slowFast | 0.005366666666666667 | 0.3 | ||
| LVL-slowFast | 0.005483333333333334 | 0.7 | ||
| LVL-slowFast | 0.00545 | 0.1 | ||
| LVL-slowFast | 0.00385 | 0.6 | ||
| LVL-slowFast | 0.005533333333333334 | 1.0 | ||
| LVL-slowFast | 0.00725 | 0.1 | ||
| LVL-slowFast | 0.0052833333333333335 | 0.7 | ||
| LVL-slowFast | 0.0055000000000000005 | 0.8 | ||
| LVL-slowFast | 0.007466666666666667 | 0.6 | ||
| LVL-slowFast | 0.008233333333333334 | 0.5 | ||
| LVL-slowFast | 0.004933333333333333 | 0.2 | ||
| LVL-slowFast | 0.006633333333333334 | 0.3 | ||
| LVL-slowFast | 0.0035 | 0.0 | ||
| LVL-slowFast | 0.0037833333333333334 | 0.0 | ||
| LVL-slowFast | 0.003766666666666667 | 0.1 | ||
| LVL-slowFast | 0.007366666666666666 | 1.0 | ||
| LVL-slowFast | 0.0076 | 0.8 | ||
| LVL-slowFast | 0.005866666666666667 | 0.4 | ||
| LVL-slowFast | 0.007766666666666667 | 0.5 | ||
| LVL-slowFast | 0.006733333333333333 | 0.6 | ||
| LVL-slowFast | 0.004833333333333333 | 0.0 | ||
| LVL-slowFast | 0.0064 | 0.6 | ||
| LVL-slowFast | 0.006466666666666667 | 0.8 | ||
| LVL-slowFast | 0.0078000000000000005 | 0.6 | ||
| LVL-slowFast | 0.005383333333333334 | 1.0 | ||
| LVL-slowFast | 0.005416666666666667 | 0.2 | ||
| LVL-slowFast | 0.004 | 0.5 | ||
| LVL-slowFast | 0.006016666666666667 | 0.9 | ||
| LVL-slowFast | 0.004166666666666667 | 0.2 | ||
| LVL-slowFast | 0.0047666666666666664 | 1.0 | ||
| LVL-slowFast | 0.00655 | 0.9 | ||
| LVL-slowFast | 0.006683333333333334 | 0.1 | ||
| LVL-slowFast | 0.004933333333333333 | 0.4 | ||
| LVL-slowFast | 0.006366666666666667 | 1.0 | ||
| LVL-slowFast | 0.006333333333333333 | 1.0 | ||
| LVL-slowFast | 0.0042833333333333334 | 0.4 | ||
| LVL-slowFast | 0.007750000000000001 | 0.5 | ||
| LVL-slowFast | 0.0052833333333333335 | 0.2 | ||
| LVL-slowFast | 0.005316666666666667 | 0.4 | ||
| LVL-slowFast | 0.007083333333333333 | 0.1 | ||
| LVL-slowFast | 0.0051333333333333335 | 1.0 | ||
| LVL-slowFast | 0.0082 | 0.8 | ||
| LVL-slowFast | 0.0035166666666666666 | 0.9 | ||
| LVL-slowFast | 0.008283333333333334 | 0.9 | ||
| LVL-slowFast | 0.004116666666666667 | 0.1 | ||
| LVL-slowFast | 0.00695 | 0.0 | ||
| LVL-slowFast | 0.005683333333333334 | 0.4 | ||
| LVL-slowFast | 0.00345 | 1.0 | ||
| LVL-slowFast | 0.007666666666666667 | 1.0 | ||
| LVL-slowFast | 0.0054666666666666665 | 0.9 | ||
| LVL-slowFast | 0.006166666666666667 | 1.0 | ||
| LVL-slowFast | 0.006183333333333333 | 0.0 | ||
| LVL-slowFast | 0.005916666666666666 | 0.3 | ||
| LVL-slowFast | 0.0073 | 0.2 | ||
| LVL-slowFast | 0.006233333333333333 | 0.4 | ||
| LVL-slowFast | 0.006566666666666667 | 0.0 | ||
| LVL-slowFast | 0.00425 | 0.3 | ||
| LVL-slowFast | 0.0083 | 0.3 | ||
| LVL-slowFast | 0.006166666666666667 | 0.1 | ||
| LVL-slowFast | 0.0076500000000000005 | 0.0 | ||
| LVL-slowFast | 0.00525 | 0.4 | ||
| LVL-slowFast | 0.006366666666666667 | 0.9 | ||
| LVL-slowFast | 0.0034166666666666664 | 0.0 | ||
| LVL-slowFast | 0.005933333333333333 | 0.8 | ||
| LVL-slowFast | 0.004433333333333333 | 1.0 | ||
| LVL-slowFast | 0.005266666666666667 | 0.9 | ||
| LVL-slowFast | 0.004483333333333334 | 0.7 | ||
| LVL-slowFast | 0.008066666666666666 | 0.6 | ||
| LVL-slowFast | 0.007083333333333333 | 0.0 | ||
| LVL-slowFast | 0.004716666666666666 | 0.1 | ||
| LVL-slowFast | 0.00505 | 0.0 | ||
| LVL-slowFast | 0.006516666666666667 | 0.5 | ||
| LVL-slowFast | 0.005566666666666667 | 0.1 | ||
| LVL-slowFast | 0.00795 | 0.7 | ||
| LVL-slowFast | 0.00745 | 0.3 | ||
| LVL-slowFast | 0.004416666666666667 | 0.3 | ||
| LVL-slowFast | 0.007883333333333332 | 0.6 | ||
| LVL-slowFast | 0.004516666666666667 | 0.7 | ||
| LVL-slowFast | 0.0033333333333333335 | 0.1 | ||
| LVL-slowFast | 0.005983333333333333 | 0.4 | ||
| LVL-slowFast | 0.008316666666666667 | 1.0 | ||
| LVL-slowFast | 0.007033333333333333 | 0.1 | ||
| LVL-slowFast | 0.0033333333333333335 | 0.7 | ||
| LVL-slowFast | 0.007483333333333333 | 0.3 | ||
| LVL-slowFast | 0.0067 | 0.1 | ||
| LVL-slowFast | 0.0069 | 0.0 | ||
| LVL-slowFast | 0.0076500000000000005 | 0.6 | ||
| LVL-slowFast | 0.006683333333333334 | 0.4 | ||
| LVL-slowFast | 0.0064333333333333334 | 0.9 | ||
| LVL-slowFast | 0.003533333333333333 | 0.3 | ||
| LVL-slowFast | 0.0054666666666666665 | 0.9 | ||
| LVL-slowFast | 0.006816666666666666 | 1.0 | ||
| LVL-slowFast | 0.004 | 0.0 | ||
| LVL-slowFast | 0.007066666666666666 | 0.0 | ||
| LVL-slowFast | 0.008066666666666666 | 0.0 | ||
| LVL-slowFast | 0.0059 | 0.8 | ||
| LVL-slowFast | 0.004066666666666666 | 0.0 | ||
| LVL-slowFast | 0.004533333333333334 | 0.1 | ||
| LVL-slowFast | 0.00445 | 0.1 | ||
| LVL-slowFast | 0.006083333333333333 | 0.0 | ||
| LVL-slowFast | 0.007466666666666667 | 0.9 | ||
| LVL-slowFast | 0.004600000000000001 | 0.2 | ||
| LVL-slowFast | 0.005683333333333334 | 0.2 | ||
| LVL-slowFast | 0.0078000000000000005 | 0.1 | ||
| LVL-slowFast | 0.00445 | 0.5 | ||
| LVL-slowFast | 0.0077 | 0.9 | ||
| LVL-slowFast | 0.0054 | 0.8 | ||
| LVL-slowFast | 0.0033333333333333335 | 0.4 | ||
| LVL-slowFast | 0.004033333333333333 | 0.6 | ||
| LVL-slowFast | 0.0060999999999999995 | 1.0 | ||
| LVL-slowFast | 0.006266666666666667 | 0.8 | ||
| LVL-slowFast | 0.004033333333333333 | 0.1 | ||
| LVL-slowFast | 0.005933333333333333 | 0.3 | ||
| LVL-slowFast | 0.006566666666666667 | 0.1 | ||
| LVL-slowFast | 0.007183333333333333 | 0.6 | ||
| LVL-slowFast | 0.00515 | 0.7 | ||
| LVL-slowFast | 0.00345 | 0.6 | ||
| LVL-slowFast | 0.008133333333333333 | 0.4 | ||
| LVL-slowFast | 0.007383333333333334 | 0.0 | ||
| LVL-slowFast | 0.007816666666666666 | 0.0 | ||
| LVL-slowFast | 0.0081 | 0.6 | ||
| LVL-slowFast | 0.008166666666666666 | 0.6 | ||
| LVL-slowFast | 0.007666666666666667 | 0.1 | ||
| LVL-slowFast | 0.008183333333333332 | 0.6 | ||
| LVL-slowFast | 0.005783333333333333 | 0.9 | ||
| LVL-slowFast | 0.007766666666666667 | 0.7 | ||
| LVL-slowFast | 0.006983333333333333 | 0.9 | ||
| LVL-slowFast | 0.008083333333333333 | 0.0 | ||
| LVL-slowFast | 0.007166666666666667 | 0.1 | ||
| LVL-slowFast | 0.0044 | 0.7 | ||
| LVL-slowFast | 0.007316666666666667 | 0.8 | ||
| LVL-slowFast | 0.003433333333333333 | 0.1 | ||
| LVL-slowFast | 0.0036166666666666665 | 0.9 | ||
| LVL-slowFast | 0.006466666666666667 | 0.9 | ||
| LVL-slowFast | 0.0076 | 0.4 | ||
| LVL-slowFast | 0.004716666666666666 | 0.9 | ||
| LVL-slowFast | 0.0042 | 0.5 | ||
| LVL-slowFast | 0.006466666666666667 | 0.4 | ||
| LVL-slowFast | 0.006883333333333333 | 0.9 | ||
| LVL-slowFast | 0.0066500000000000005 | 0.7 | ||
| LVL-slowFast | 0.0061333333333333335 | 0.2 | ||
| LVL-slowFast | 0.0037833333333333334 | 0.2 | ||
| LVL-slowFast | 0.0051333333333333335 | 0.3 | ||
| LVL-slowFast | 0.0036166666666666665 | 0.4 | ||
| LVL-slowFast | 0.007166666666666667 | 0.5 | ||
| LVL-slowFast | 0.006166666666666667 | 0.2 | ||
| LVL-slowFast | 0.005883333333333333 | 1.0 | ||
| LVL-slowFast | 0.0050999999999999995 | 0.3 | ||
| LVL-slowFast | 0.007716666666666667 | 0.0 | ||
| LVL-slowFast | 0.007916666666666666 | 0.5 | ||
| LVL-slowFast | 0.004216666666666666 | 0.6 | ||
| LVL-slowFast | 0.0050999999999999995 | 0.9 | ||
| LVL-slowFast | 0.007 | 0.3 | ||
| LVL-slowFast | 0.0044 | 0.1 | ||
| LVL-slowFast | 0.00345 | 0.3 | ||
| LVL-slowFast | 0.00725 | 0.1 | ||
| LVL-slowFast | 0.008316666666666667 | 0.3 | ||
| LVL-slowFast | 0.007333333333333333 | 0.8 | ||
| LVL-slowFast | 0.00575 | 0.7 | ||
| LVL-slowFast | 0.0050999999999999995 | 0.7 | ||
| LVL-slowFast | 0.0037333333333333333 | 1.0 | ||
| LVL-slowFast | 0.0042833333333333334 | 0.4 | ||
| LVL-slowFast | 0.0074333333333333335 | 0.7 | ||
| LVL-slowFast | 0.0039499999999999995 | 0.2 | ||
| LVL-slowFast | 0.006516666666666667 | 0.0 | ||
| LVL-slowFast | 0.0035666666666666668 | 0.0 | ||
| LVL-slowFast | 0.004116666666666667 | 0.2 | ||
| LVL-slowFast | 0.005783333333333333 | 0.2 | ||
| LVL-slowFast | 0.004933333333333333 | 0.3 | ||
| LVL-slowFast | 0.004933333333333333 | 0.5 | ||
| LVL-slowFast | 0.00345 | 0.2 | ||
| LVL-slowFast | 0.003966666666666666 | 0.0 | ||
| LVL-slowFast | 0.0076 | 1.0 | 0.6666666666666666 | |
| LVL-slowFast | 0.00335 | 0.4 | ||
| LVL-slowFast | 0.0033666666666666667 | 0.8 | ||
| LVL-slowFast | 0.0057666666666666665 | 0.4 | ||
| LVL-slowFast | 0.006166666666666667 | 0.8 | ||
| LVL-slowFast | 0.005366666666666667 | 0.7 | ||
| LVL-slowFast | 0.005166666666666667 | 0.6 | ||
| LVL-slowFast | 0.007583333333333333 | 0.7 | ||
| LVL-slowFast | 0.005333333333333333 | 0.0 | ||
| LVL-slowFast | 0.0036333333333333335 | 0.6 | ||
| LVL-slowFast | 0.008066666666666666 | 0.9 | ||
| LVL-slowFast | 0.007733333333333333 | 0.4 | ||
| LVL-slowFast | 0.007 | 0.3 | ||
| LVL-slowFast | 0.004433333333333333 | 0.6 | ||
| LVL-slowFast | 0.004116666666666667 | 0.1 | ||
| LVL-slowFast | 0.005783333333333333 | 0.3 | ||
| LVL-slowFast | 0.0039833333333333335 | 0.9 | ||
| LVL-slowFast | 0.005233333333333334 | 0.0 | ||
| LVL-slowFast | 0.00695 | 0.5 | ||
| LVL-slowFast | 0.003933333333333333 | 0.3 | ||
| LVL-slowFast | 0.005083333333333333 | 1.0 | ||
| LVL-slowFast | 0.004883333333333333 | 0.5 | ||
| LVL-slowFast | 0.007016666666666667 | 0.3 | ||
| LVL-slowFast | 0.008183333333333332 | 0.9 | ||
| LVL-slowFast | 0.005816666666666666 | 0.6 | ||
| LVL-slowFast | 0.005866666666666667 | 1.0 | ||
| LVL-slowFast | 0.00735 | 0.7 | ||
| LVL-slowFast | 0.0038333333333333336 | 0.9 | ||
| LVL-slowFast | 0.005683333333333334 | 0.2 | ||
| LVL-slowFast | 0.0042833333333333334 | 0.3 | ||
| LVL-slowFast | 0.0038333333333333336 | 0.8 | ||
| LVL-slowFast | 0.00785 | 0.6 | ||
| LVL-slowFast | 0.007116666666666666 | 0.8 | ||
| LVL-slowFast | 0.007233333333333333 | 0.6 | ||
| LVL-slowFast | 0.005683333333333334 | 0.6 | ||
| LVL-slowFast | 0.0041 | 0.9 | ||
| LVL-slowFast | 0.007066666666666666 | 0.7 | ||
| LVL-slowFast | 0.008033333333333333 | 0.7 | ||
| LVL-slowFast | 0.007 | 0.3 | ||
| LVL-slowFast | 0.005666666666666667 | 0.6 | ||
| LVL-slowFast | 0.00405 | 0.5 | ||
| LVL-slowFast | 0.00815 | 0.6 | ||
| LVL-slowFast | 0.0035833333333333333 | 0.3 | ||
| LVL-slowFast | 0.0071333333333333335 | 0.6 | ||
| LVL-slowFast | 0.005533333333333334 | 1.0 | ||
| LVL-slowFast | 0.00785 | 0.6 | ||
| LVL-slowFast | 0.00725 | 0.3 | ||
| LVL-slowFast | 0.007916666666666666 | 0.5 | ||
| LVL-slowFast | 0.0062 | 0.2 | ||
| LVL-slowFast | 0.008066666666666666 | 0.1 | ||
| LVL-slowFast | 0.006666666666666667 | 0.3 | ||
| LVL-slowFast | 0.007466666666666667 | 0.6 | ||
| LVL-slowFast | 0.005266666666666667 | 1.0 | ||
| LVL-slowFast | 0.0033666666666666667 | 0.6 | ||
| LVL-slowFast | 0.004600000000000001 | 0.0 | ||
| LVL-slowFast | 0.004116666666666667 | 0.5 | ||
| LVL-slowFast | 0.00445 | 0.2 | ||
| LVL-slowFast | 0.0035499999999999998 | 0.7 | ||
| LVL-slowFast | 0.0046500000000000005 | 0.5 | ||
| LVL-slowFast | 0.00655 | 0.4 | ||
| LVL-slowFast | 0.0071333333333333335 | 1.0 | ||
| LVL-slowFast | 0.006 | 1.0 | ||
| LVL-slowFast | 0.007266666666666667 | 0.2 | ||
| LVL-slowFast | 0.005783333333333333 | 0.2 | ||
| LVL-slowFast | 0.00625 | 0.7 | ||
| LVL-slowFast | 0.006633333333333334 | 0.5 | ||
| LVL-slowFast | 0.005316666666666667 | 0.3 | ||
| LVL-slowFast | 0.0070999999999999995 | 0.2 | ||
| LVL-slowFast | 0.006016666666666667 | 0.7 | ||
| LVL-slowFast | 0.00505 | 1.0 | ||
| LVL-slowFast | 0.0039000000000000003 | 0.6 | ||
| LVL-slowFast | 0.0038 | 0.5 | ||
| LVL-slowFast | 0.0059 | 0.0 | ||
| LVL-slowFast | 0.0060999999999999995 | 0.6 | ||
| LVL-slowFast | 0.00815 | 0.1 | ||
| LVL-slowFast | 0.0069 | 0.8 | ||
| LVL-slowFast | 0.003533333333333333 | 0.1 | ||
| LVL-slowFast | 0.00545 | 0.3 | ||
| LVL-slowFast | 0.007383333333333334 | 0.2 | ||
| LVL-slowFast | 0.0074 | 0.4 | ||
| LVL-slowFast | 0.005033333333333333 | 0.9 | ||
| LVL-slowFast | 0.0066 | 0.8 | ||
| LVL-slowFast | 0.0033666666666666667 | 0.8 | ||
| LVL-slowFast | 0.007866666666666666 | 0.2 | ||
| LVL-slowFast | 0.007383333333333334 | 0.0 | ||
| LVL-slowFast | 0.005366666666666667 | 0.0 | ||
| LVL-slowFast | 0.005066666666666666 | 1.0 | ||
| LVL-slowFast | 0.007733333333333333 | 0.5 | ||
| LVL-slowFast | 0.007899999999999999 | 0.0 | ||
| LVL-slowFast | 0.0083 | 0.0 | ||
| LVL-slowFast | 0.005833333333333333 | 0.6 | ||
| LVL-slowFast | 0.006383333333333334 | 0.1 | ||
| LVL-slowFast | 0.006466666666666667 | 0.1 | ||
| LVL-slowFast | 0.007583333333333333 | 0.7 | ||
| LVL-slowFast | 0.00635 | 0.9 | ||
| LVL-slowFast | 0.007500000000000001 | 0.2 | ||
| LVL-slowFast | 0.007899999999999999 | 0.0 | ||
| LVL-slowFast | 0.004783333333333333 | 0.6 | ||
| LVL-slowFast | 0.006866666666666666 | 0.0 | ||
| LVL-slowFast | 0.0036 | 0.1 | ||
| LVL-slowFast | 0.0061333333333333335 | 0.9 | ||
| LVL-slowFast | 0.0055000000000000005 | 0.1 | 0.7777777777777778 | |
| LVL-slowFast | 0.006849999999999999 | 1.0 | 0.7777777777777778 | |
| LVL-slowFast | 0.006266666666666667 | 1.0 | ||
| LVL-slowFast | 0.0046500000000000005 | 0.5 | ||
| LVL-slowFast | 0.0049833333333333335 | 0.3 | ||
| LVL-slowFast | 0.007766666666666667 | 0.1 | ||
| LVL-slowFast | 0.00475 | 0.0 | ||
| LVL-slowFast | 0.005233333333333334 | 0.7 | ||
| LVL-slowFast | 0.008066666666666666 | 0.9 | ||
| LVL-slowFast | 0.004733333333333333 | 0.9 | ||
| LVL-slowFast | 0.0062 | 0.9 | ||
| LVL-slowFast | 0.0058 | 0.3 | ||
| LVL-slowFast | 0.006316666666666667 | 0.9 | ||
| LVL-slowFast | 0.00825 | 0.6 | ||
| LVL-slowFast | 0.008066666666666666 | 0.8 | ||
| LVL-slowFast | 0.007033333333333333 | 0.4 | ||
| LVL-slowFast | 0.0070999999999999995 | 0.6 | ||
| LVL-slowFast | 0.0036 | 0.4 | ||
| LVL-slowFast | 0.0039499999999999995 | 0.6 | ||
| LVL-slowFast | 0.0057666666666666665 | 0.4 | ||
| LVL-slowFast | 0.005566666666666667 | 1.0 | ||
| LVL-slowFast | 0.007383333333333334 | 1.0 | ||
| LVL-slowFast | 0.004183333333333333 | 0.7 | ||
| LVL-slowFast | 0.004583333333333333 | 0.4 | ||
| LVL-slowFast | 0.0033333333333333335 | 0.9 | ||
| LVL-slowFast | 0.0083 | 0.9 | ||
| LVL-slowFast | 0.0054 | 0.0 | ||
| LVL-slowFast | 0.0076166666666666666 | 0.2 | 0.8888888888888888 | |
| LVL-slowFast | 0.008266666666666667 | 0.1 | ||
| LVL-slowFast | 0.0042833333333333334 | 0.2 | ||
| LVL-slowFast | 0.0066500000000000005 | 0.0 | ||
| LVL-slowFast | 0.007333333333333333 | 0.8 | ||
| LVL-slowFast | 0.006783333333333333 | 0.0 | ||
| LVL-slowFast | 0.007566666666666667 | 0.6 | ||
| LVL-slowFast | 0.005516666666666667 | 0.4 | ||
| LVL-slowFast | 0.006500000000000001 | 0.9 | ||
| LVL-slowFast | 0.00505 | 0.7 | ||
| LVL-slowFast | 0.0038 | 0.9 | ||
| LVL-slowFast | 0.004116666666666667 | 0.2 | ||
| LVL-slowFast | 0.004666666666666667 | 0.8 | ||
| LVL-slowFast | 0.0057666666666666665 | 0.3 | ||
| LVL-slowFast | 0.0053 | 0.7 | ||
| LVL-slowFast | 0.008116666666666666 | 0.2 | 1.0 | |
| LVL-slowFast | 0.0063 | 0.7 | ||
| LVL-slowFast | 0.0034166666666666664 | 0.3 | ||
| LVL-slowFast | 0.006500000000000001 | 0.8 | ||
| LVL-slowFast | 0.005083333333333333 | 0.5 | ||
| LVL-slowFast | 0.0074 | 0.4 | ||
| LVL-slowFast | 0.007683333333333334 | 0.2 | ||
| LVL-slowFast | 0.006733333333333333 | 0.2 | ||
| LVL-slowFast | 0.006966666666666666 | 0.0 | ||
| LVL-slowFast | 0.005316666666666667 | 1.0 | ||
| LVL-slowFast | 0.006816666666666666 | 0.6 | ||
| LVL-slowFast | 0.006933333333333333 | 0.0 | ||
| LVL-slowFast | 0.006816666666666666 | 0.1 | ||
| LVL-slowFast | 0.007383333333333334 | 0.0 | ||
| LVL-slowFast | 0.00385 | 1.0 | ||
| LVL-slowFast | 0.0054666666666666665 | 0.7 | ||
| LVL-slowFast | 0.007183333333333333 | 0.8 | ||
| LVL-slowFast | 0.0073 | 0.9 | ||
| LVL-slowFast | 0.0050999999999999995 | 0.5 | ||
| LVL-slowFast | 0.004966666666666666 | 0.8 | ||
| LVL-slowFast | 0.0051333333333333335 | 0.0 | ||
| LVL-slowFast | 0.00385 | 0.6 | ||
| LVL-slowFast | 0.007750000000000001 | 0.3 | ||
| LVL-slowFast | 0.007416666666666667 | 0.8 | ||
| LVL-slowFast | 0.004833333333333333 | 0.1 | ||
| LVL-slowFast | 0.0043 | 0.6 | ||
| LVL-slowFast | 0.00635 | 0.5 | ||
| LVL-slowFast | 0.007833333333333333 | 0.4 | ||
| LVL-slowFast | 0.00475 | 0.2 | ||
| LVL-slowFast | 0.005233333333333334 | 0.9 | ||
| LVL-slowFast | 0.005616666666666667 | 0.2 | ||
| LVL-slowFast | 0.0078000000000000005 | 0.7 | ||
| LVL-slowFast | 0.0056500000000000005 | 0.5 | ||
| LVL-slowFast | 0.005166666666666667 | 0.0 | ||
| LVL-slowFast | 0.005383333333333334 | 0.0 | ||
| LVL-slowFast | 0.005166666666666667 | 0.3 | ||
| LVL-slowFast | 0.00735 | 0.8 | ||
| LVL-slowFast | 0.004516666666666667 | 1.0 | ||
| LVL-slowFast | 0.0043 | 0.3 | ||
| LVL-slowFast | 0.004916666666666666 | 0.4 | ||
| LVL-slowFast | 0.0038666666666666667 | 0.8 | ||
| LVL-slowFast | 0.0038 | 0.4 | ||
| LVL-slowFast | 0.004716666666666666 | 0.1 | ||
| LVL-slowFast | 0.003816666666666667 | 1.0 | ||
| LVL-slowFast | 0.004600000000000001 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07024999999999999 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06273333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0732 | 0.9 | ||
| LVL-wideRangeNoCom | 0.01885 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0249 | 0.5 | 0.0 | |
| LVL-wideRangeNoCom | 0.01715 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06793333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03383333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.043583333333333335 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06115 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0416 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06133333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03486666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03688333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06555 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03448333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04148333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.031966666666666664 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07305 | 0.9 | ||
| LVL-wideRangeNoCom | 0.047983333333333336 | 0.5 | ||
| LVL-wideRangeNoCom | 0.04015 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07283333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.026366666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0288 | 0.1 | ||
| LVL-wideRangeNoCom | 0.028399999999999998 | 0.1 | 0.1111111111111111 | |
| LVL-wideRangeNoCom | 0.049466666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04856666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0534 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06625 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07176666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06955 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0285 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07816666666666668 | 0.4 | 0.1111111111111111 | |
| LVL-wideRangeNoCom | 0.01905 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0293 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05945 | 0.8 | ||
| LVL-wideRangeNoCom | 0.02665 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03981666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06186666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.062000000000000006 | 0.6 | ||
| LVL-wideRangeNoCom | 0.033749999999999995 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0276 | 0.2 | ||
| LVL-wideRangeNoCom | 0.02293333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.054033333333333336 | 0.3 | ||
| LVL-wideRangeNoCom | 0.038900000000000004 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0203 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05241666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.024583333333333336 | 0.2 | ||
| LVL-wideRangeNoCom | 0.047933333333333335 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03796666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05168333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07128333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05871666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0593 | 0.3 | ||
| LVL-wideRangeNoCom | 0.044316666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03531666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07203333333333334 | 0.4 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.06873333333333333 | 0.7 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.05191666666666667 | 0.4 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.07790000000000001 | 1.0 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.062233333333333335 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04621666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05441666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07166666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.045566666666666665 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04835 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05446666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03106666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.044983333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.024466666666666668 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04618333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03673333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.048516666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06905 | 0.4 | ||
| LVL-wideRangeNoCom | 0.019683333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07175 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0496 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08221666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.036533333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08121666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.024583333333333336 | 0.9 | ||
| LVL-wideRangeNoCom | 0.054983333333333335 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07006666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.033549999999999996 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06816666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07406666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.051050000000000005 | 0.5 | ||
| LVL-wideRangeNoCom | 0.025716666666666665 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05225 | 0.3 | ||
| LVL-wideRangeNoCom | 0.030166666666666668 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04263333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04116666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07998333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.020766666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06283333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04215 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0387 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0754 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04828333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06738333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03779999999999999 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07993333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.01695 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0578 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05195 | 0.7 | ||
| LVL-wideRangeNoCom | 0.017633333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.020216666666666668 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05388333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.028166666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.043166666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06585 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03606666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.028166666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05225 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04853333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0745 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0628 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05716666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06466666666666666 | 0.0 | 0.0 | |
| LVL-wideRangeNoCom | 0.030500000000000003 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07444999999999999 | 0.0 | ||
| LVL-wideRangeNoCom | 0.037200000000000004 | 0.4 | ||
| LVL-wideRangeNoCom | 0.017633333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07988333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.025183333333333332 | 0.4 | ||
| LVL-wideRangeNoCom | 0.057383333333333335 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05171666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06745 | 0.2 | ||
| LVL-wideRangeNoCom | 0.05083333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0402 | 0.1 | ||
| LVL-wideRangeNoCom | 0.038233333333333334 | 1.0 | 0.1111111111111111 | |
| LVL-wideRangeNoCom | 0.0373 | 0.7 | ||
| LVL-wideRangeNoCom | 0.027133333333333332 | 0.6 | ||
| LVL-wideRangeNoCom | 0.02315 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04976666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04201666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07685 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04405 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07853333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.016866666666666665 | 0.5 | ||
| LVL-wideRangeNoCom | 0.02635 | 0.7 | ||
| LVL-wideRangeNoCom | 0.018400000000000003 | 0.0 | ||
| LVL-wideRangeNoCom | 0.08098333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07305 | 1.0 | ||
| LVL-wideRangeNoCom | 0.043699999999999996 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06333333333333332 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06446666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07131666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05276666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05043333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0699 | 0.5 | ||
| LVL-wideRangeNoCom | 0.058949999999999995 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07050000000000001 | 0.0 | ||
| LVL-wideRangeNoCom | 0.052533333333333335 | 0.5 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.06745 | 1.0 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.071 | 0.0 | ||
| LVL-wideRangeNoCom | 0.061516666666666664 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06521666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.050699999999999995 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06656666666666668 | 0.6 | 0.0 | |
| LVL-wideRangeNoCom | 0.024366666666666665 | 1.0 | 0.0 | |
| LVL-wideRangeNoCom | 0.08093333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.08178333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06925 | 0.5 | ||
| LVL-wideRangeNoCom | 0.026716666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06066666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.049933333333333337 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06543333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.08116666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0628 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0243 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03098333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06826666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05723333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07385 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0621 | 0.7 | ||
| LVL-wideRangeNoCom | 0.08246666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.021349999999999997 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08141666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03988333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07138333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05213333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07136666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08106666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.059050000000000005 | 0.3 | ||
| LVL-wideRangeNoCom | 0.058050000000000004 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0631 | 0.5 | ||
| LVL-wideRangeNoCom | 0.039516666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.03105 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05506666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.027899999999999998 | 0.7 | ||
| LVL-wideRangeNoCom | 0.044649999999999995 | 0.1 | ||
| LVL-wideRangeNoCom | 0.027916666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.030433333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07663333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07636666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.018616666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07258333333333335 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05375 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07241666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07590000000000001 | 0.6 | ||
| LVL-wideRangeNoCom | 0.02835 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06611666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.035449999999999995 | 0.4 | ||
| LVL-wideRangeNoCom | 0.026083333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.031083333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06783333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.057416666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.027083333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.044366666666666665 | 0.1 | ||
| LVL-wideRangeNoCom | 0.033416666666666664 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06755 | 0.5 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.03675 | 0.9 | ||
| LVL-wideRangeNoCom | 0.025133333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06313333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06958333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03853333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.021666666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.029150000000000002 | 0.6 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.0749 | 0.7 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.06506666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05305 | 0.3 | ||
| LVL-wideRangeNoCom | 0.025583333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08291666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.053566666666666665 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04331666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05306666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06075 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04345 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06406666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0286 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06425 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05223333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.019399999999999997 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05803333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0572 | 0.0 | ||
| LVL-wideRangeNoCom | 0.057716666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.050333333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06233333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.019483333333333335 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04755 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05963333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.044566666666666664 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06071666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05553333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.025633333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06576666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0582 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04828333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06871666666666668 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0528 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06398333333333334 | 0.6 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.04543333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03521666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.08001666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.057216666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0502 | 0.5 | ||
| LVL-wideRangeNoCom | 0.041850000000000005 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06838333333333332 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06585 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06205 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05606666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.048516666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.037200000000000004 | 0.8 | ||
| LVL-wideRangeNoCom | 0.047933333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06808333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.022716666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0383 | 0.3 | ||
| LVL-wideRangeNoCom | 0.026449999999999998 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07571666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07568333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.027483333333333335 | 1.0 | ||
| LVL-wideRangeNoCom | 0.022733333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.043366666666666664 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07426666666666668 | 0.4 | ||
| LVL-wideRangeNoCom | 0.022166666666666668 | 0.1 | ||
| LVL-wideRangeNoCom | 0.022316666666666665 | 1.0 | ||
| LVL-wideRangeNoCom | 0.026733333333333335 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0785 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0794 | 0.4 | 0.1111111111111111 | |
| LVL-wideRangeNoCom | 0.08255 | 0.2 | ||
| LVL-wideRangeNoCom | 0.019166666666666665 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06055 | 0.9 | ||
| LVL-wideRangeNoCom | 0.033016666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0369 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06749999999999999 | 0.9 | ||
| LVL-wideRangeNoCom | 0.026216666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05923333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08023333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04968333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0682 | 0.4 | ||
| LVL-wideRangeNoCom | 0.023966666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.020783333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.024983333333333337 | 0.6 | ||
| LVL-wideRangeNoCom | 0.047 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07756666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05735 | 0.4 | ||
| LVL-wideRangeNoCom | 0.08128333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0435 | 0.3 | ||
| LVL-wideRangeNoCom | 0.055433333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06508333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.017516666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.02033333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07855 | 0.1 | ||
| LVL-wideRangeNoCom | 0.08051666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07106666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.08326666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.059033333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.060733333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.024783333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04471666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.020550000000000002 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0419 | 0.8 | ||
| LVL-wideRangeNoCom | 0.018116666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04513333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.019533333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0598 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07278333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06661666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03128333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08291666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08195 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0245 | 0.2 | ||
| LVL-wideRangeNoCom | 0.02235 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03203333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04653333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04786666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.08268333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06456666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.017083333333333332 | 0.7 | ||
| LVL-wideRangeNoCom | 0.022816666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06286666666666667 | 0.7 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.019533333333333333 | 0.6 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.029133333333333334 | 0.1 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.026683333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05878333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0741 | 0.2 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.0685 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04783333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.024166666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.041416666666666664 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06648333333333332 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06661666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.023533333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07028333333333332 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06211666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.045483333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07501666666666668 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06701666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03666666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.03353333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.034699999999999995 | 1.0 | ||
| LVL-wideRangeNoCom | 0.01865 | 0.0 | ||
| LVL-wideRangeNoCom | 0.047799999999999995 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03875 | 1.0 | ||
| LVL-wideRangeNoCom | 0.046 | 0.1 | ||
| LVL-wideRangeNoCom | 0.08226666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04013333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07871666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03995 | 0.9 | ||
| LVL-wideRangeNoCom | 0.051783333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03878333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0668 | 0.7 | ||
| LVL-wideRangeNoCom | 0.054766666666666665 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07118333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.020633333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05563333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.034699999999999995 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05483333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.02625 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06506666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.052616666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06383333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04935 | 0.3 | ||
| LVL-wideRangeNoCom | 0.040233333333333336 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04571666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.018633333333333335 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04593333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.062283333333333336 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04568333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06023333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.08061666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03403333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.02988333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0236 | 0.8 | ||
| LVL-wideRangeNoCom | 0.035800000000000005 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03995 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04741666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04418333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.040233333333333336 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0249 | 0.4 | ||
| LVL-wideRangeNoCom | 0.02988333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07766666666666668 | 0.1 | ||
| LVL-wideRangeNoCom | 0.026866666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07719999999999999 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06466666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.017900000000000003 | 0.8 | 0.2222222222222222 | |
| LVL-wideRangeNoCom | 0.02801666666666667 | 0.0 | 0.3333333333333333 | |
| LVL-wideRangeNoCom | 0.01955 | 0.8 | ||
| LVL-wideRangeNoCom | 0.062283333333333336 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07768333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.025733333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04206666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0761 | 0.8 | ||
| LVL-wideRangeNoCom | 0.01718333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03675 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03663333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0381 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06718333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.02793333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07559999999999999 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06536666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06881666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03825 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03506666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.023533333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0212 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07595 | 0.7 | ||
| LVL-wideRangeNoCom | 0.027883333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03115 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06735000000000001 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0421 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06846666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06353333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.024316666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.053233333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07135 | 0.5 | ||
| LVL-wideRangeNoCom | 0.052050000000000006 | 0.0 | ||
| LVL-wideRangeNoCom | 0.057749999999999996 | 0.9 | ||
| LVL-wideRangeNoCom | 0.02051666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.051416666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06665 | 0.1 | 0.2222222222222222 | |
| LVL-wideRangeNoCom | 0.04861666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07471666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0252 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07856666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04791666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.045233333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.030833333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06931666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0538 | 0.1 | ||
| LVL-wideRangeNoCom | 0.01895 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08193333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.053733333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06413333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.059166666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0737 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0434 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06863333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03323333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.032883333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05796666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07801666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08173333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05868333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.058300000000000005 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07146666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06591666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.02215 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0516 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03426666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04398333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.020266666666666665 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03128333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.055433333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07113333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.02656666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.038983333333333335 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0472 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07973333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.024833333333333332 | 0.4 | ||
| LVL-wideRangeNoCom | 0.050083333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03751666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05755 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05035 | 0.8 | ||
| LVL-wideRangeNoCom | 0.028483333333333336 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06836666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.027899999999999998 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06956666666666668 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06315 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03563333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04625 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08251666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08315 | 0.6 | ||
| LVL-wideRangeNoCom | 0.029516666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.024116666666666668 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06096666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07546666666666665 | 0.1 | ||
| LVL-wideRangeNoCom | 0.024650000000000002 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07285000000000001 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06803333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03115 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0471 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04545 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03681666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.030216666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.019799999999999998 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07961666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06118333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.08021666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03411666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05821666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07001666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04501666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.08203333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06716666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04756666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.05696666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05413333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.042133333333333335 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07014999999999999 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06955 | 0.3 | ||
| LVL-wideRangeNoCom | 0.036616666666666665 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06721666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07438333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04998333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.05623333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03391666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.018783333333333332 | 0.6 | ||
| LVL-wideRangeNoCom | 0.027483333333333335 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04173333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.043616666666666665 | 0.9 | ||
| LVL-wideRangeNoCom | 0.022016666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.057183333333333336 | 0.1 | ||
| LVL-wideRangeNoCom | 0.058916666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0788 | 0.6 | ||
| LVL-wideRangeNoCom | 0.022716666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.04435 | 0.6 | ||
| LVL-wideRangeNoCom | 0.023016666666666668 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07141666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.03916666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05853333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.08095000000000001 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03753333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.031466666666666664 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0649 | 1.0 | ||
| LVL-wideRangeNoCom | 0.033800000000000004 | 0.8 | ||
| LVL-wideRangeNoCom | 0.05575 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04178333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.01845 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07166666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.043133333333333336 | 0.0 | ||
| LVL-wideRangeNoCom | 0.056150000000000005 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07823333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.017716666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0707 | 0.2 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.07305 | 0.1 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.06931666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03415 | 0.3 | ||
| LVL-wideRangeNoCom | 0.034749999999999996 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06861666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06138333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07246666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03275 | 0.2 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.06461666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.049383333333333335 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0531 | 0.3 | ||
| LVL-wideRangeNoCom | 0.037766666666666664 | 0.7 | ||
| LVL-wideRangeNoCom | 0.08308333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08141666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0269 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06485 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03818333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07321666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.057466666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.042333333333333334 | 0.3 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.06598333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06276666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.043333333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07790000000000001 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04355 | 1.0 | ||
| LVL-wideRangeNoCom | 0.02825 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06833333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05513333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07741666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.024066666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0793 | 0.8 | ||
| LVL-wideRangeNoCom | 0.035333333333333335 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0574 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03376666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03901666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.08285000000000001 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0643 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03498333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.024466666666666668 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0224 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03655 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04586666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.021483333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.02365 | 0.9 | ||
| LVL-wideRangeNoCom | 0.017983333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0726 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06935 | 0.0 | ||
| LVL-wideRangeNoCom | 0.027366666666666664 | 0.8 | ||
| LVL-wideRangeNoCom | 0.036033333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0584 | 0.7 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.08068333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.059133333333333336 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0228 | 0.3 | ||
| LVL-wideRangeNoCom | 0.048216666666666665 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0724 | 0.1 | ||
| LVL-wideRangeNoCom | 0.028 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04376666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03245 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07166666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.035416666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.020766666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04008333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0323 | 0.4 | ||
| LVL-wideRangeNoCom | 0.055516666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08158333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.046516666666666664 | 1.0 | ||
| LVL-wideRangeNoCom | 0.057 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03905 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07303333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.02075 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07355 | 0.9 | ||
| LVL-wideRangeNoCom | 0.019966666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.057749999999999996 | 0.0 | ||
| LVL-wideRangeNoCom | 0.020399999999999998 | 0.3 | ||
| LVL-wideRangeNoCom | 0.03158333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.039983333333333336 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05156666666666666 | 0.9 | 0.3333333333333333 | |
| LVL-wideRangeNoCom | 0.030516666666666668 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04526666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.04795 | 0.9 | ||
| LVL-wideRangeNoCom | 0.018883333333333332 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07991666666666666 | 0.2 | 0.6666666666666666 | |
| LVL-wideRangeNoCom | 0.01951666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0298 | 0.0 | ||
| LVL-wideRangeNoCom | 0.08246666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05686666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.038566666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0317 | 0.9 | ||
| LVL-wideRangeNoCom | 0.049749999999999996 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05538333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05745 | 0.2 | ||
| LVL-wideRangeNoCom | 0.050133333333333335 | 0.0 | ||
| LVL-wideRangeNoCom | 0.024783333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.02751666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07701666666666668 | 0.3 | ||
| LVL-wideRangeNoCom | 0.03726666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0387 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0656 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0541 | 0.3 | ||
| LVL-wideRangeNoCom | 0.043383333333333336 | 0.5 | ||
| LVL-wideRangeNoCom | 0.021066666666666668 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03936666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05475 | 1.0 | ||
| LVL-wideRangeNoCom | 0.046566666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.039599999999999996 | 0.1 | ||
| LVL-wideRangeNoCom | 0.053366666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06553333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07995 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06753333333333332 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0557 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03133333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04086666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.018766666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.027716666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05708333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06498333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08278333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05 | 0.6 | ||
| LVL-wideRangeNoCom | 0.026783333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.024316666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.017683333333333332 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07726666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.018899999999999997 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08061666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04990000000000001 | 1.0 | ||
| LVL-wideRangeNoCom | 0.052983333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06985 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06760000000000001 | 0.1 | ||
| LVL-wideRangeNoCom | 0.02393333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.02538333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06681666666666668 | 0.6 | ||
| LVL-wideRangeNoCom | 0.024716666666666668 | 0.6 | ||
| LVL-wideRangeNoCom | 0.030166666666666668 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0777 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05748333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.03115 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07861666666666665 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04786666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.044849999999999994 | 0.5 | ||
| LVL-wideRangeNoCom | 0.020466666666666668 | 0.8 | ||
| LVL-wideRangeNoCom | 0.022016666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0526 | 1.0 | ||
| LVL-wideRangeNoCom | 0.037083333333333336 | 0.9 | ||
| LVL-wideRangeNoCom | 0.020050000000000002 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07825 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0296 | 0.3 | ||
| LVL-wideRangeNoCom | 0.056466666666666665 | 0.0 | ||
| LVL-wideRangeNoCom | 0.061233333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06376666666666667 | 0.0 | 0.3333333333333333 | |
| LVL-wideRangeNoCom | 0.05948333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.031483333333333335 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03973333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.035416666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05358333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04106666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06145 | 0.3 | ||
| LVL-wideRangeNoCom | 0.03161666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04778333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.041466666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.023616666666666668 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07473333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0173 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06046666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04335 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07731666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.022366666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0381 | 0.5 | ||
| LVL-wideRangeNoCom | 0.039799999999999995 | 0.5 | ||
| LVL-wideRangeNoCom | 0.061766666666666664 | 1.0 | ||
| LVL-wideRangeNoCom | 0.045116666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07205 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06046666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.02265 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06828333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0514 | 0.3 | ||
| LVL-wideRangeNoCom | 0.051416666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08268333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0621 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05676666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07038333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.046066666666666665 | 0.8 | ||
| LVL-wideRangeNoCom | 0.049383333333333335 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05855 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04991666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.041966666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07526666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.053000000000000005 | 0.5 | ||
| LVL-wideRangeNoCom | 0.02955 | 0.4 | ||
| LVL-wideRangeNoCom | 0.023116666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07768333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.08159999999999999 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04466666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06621666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08055 | 0.3 | ||
| LVL-wideRangeNoCom | 0.053766666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07631666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.021833333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06791666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07834999999999999 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0228 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05703333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.060250000000000005 | 0.2 | ||
| LVL-wideRangeNoCom | 0.017416666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.024466666666666668 | 0.2 | ||
| LVL-wideRangeNoCom | 0.025233333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.05755 | 0.1 | ||
| LVL-wideRangeNoCom | 0.022966666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.023716666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.028733333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.02015 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04521666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07830000000000001 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04326666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07913333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.053816666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06548333333333332 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03938333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.038599999999999995 | 0.0 | ||
| LVL-wideRangeNoCom | 0.054483333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04278333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04161666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04925 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06668333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03961666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.018233333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07833333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.056916666666666664 | 0.7 | ||
| LVL-wideRangeNoCom | 0.043533333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07998333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0453 | 0.2 | ||
| LVL-wideRangeNoCom | 0.05583333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0637 | 0.4 | ||
| LVL-wideRangeNoCom | 0.034183333333333336 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03025 | 0.5 | ||
| LVL-wideRangeNoCom | 0.057716666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.059699999999999996 | 0.4 | ||
| LVL-wideRangeNoCom | 0.025249999999999998 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06491666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06398333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07723333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06683333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.027216666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0651 | 0.4 | ||
| LVL-wideRangeNoCom | 0.023666666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06668333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.038266666666666664 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06808333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.052566666666666664 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08308333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.050333333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07191666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05243333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04835 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05993333333333333 | 0.1 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.06101666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03688333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07896666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06921666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.018349999999999998 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07856666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0412 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05748333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.017566666666666668 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03563333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.040433333333333335 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0325 | 0.4 | ||
| LVL-wideRangeNoCom | 0.053899999999999997 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06736666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03668333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03686666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05268333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0293 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08261666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.023299999999999998 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03916666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0554 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05453333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.026316666666666665 | 0.1 | ||
| LVL-wideRangeNoCom | 0.08156666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08205 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0453 | 0.3 | ||
| LVL-wideRangeNoCom | 0.054316666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05735 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06556666666666668 | 0.2 | ||
| LVL-wideRangeNoCom | 0.08018333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.026133333333333335 | 0.5 | ||
| LVL-wideRangeNoCom | 0.021633333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.040433333333333335 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08045 | 0.7 | ||
| LVL-wideRangeNoCom | 0.030033333333333335 | 0.6 | ||
| LVL-wideRangeNoCom | 0.020666666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06916666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.029833333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.073 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06146666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04435 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04501666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.025449999999999997 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05798333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.08193333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0304 | 0.4 | ||
| LVL-wideRangeNoCom | 0.016733333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.024 | 0.8 | ||
| LVL-wideRangeNoCom | 0.039066666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.043333333333333335 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06615 | 0.5 | ||
| LVL-wideRangeNoCom | 0.02065 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03833333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04873333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.02335 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07844999999999999 | 0.4 | ||
| LVL-wideRangeNoCom | 0.020450000000000003 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05475 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05501666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.038950000000000005 | 0.1 | ||
| LVL-wideRangeNoCom | 0.027183333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04535 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05195 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07955 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07551666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07418333333333332 | 0.9 | ||
| LVL-wideRangeNoCom | 0.030233333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07745 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07156666666666665 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06563333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.026933333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07965 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07338333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.08086666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06216666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.019983333333333336 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0603 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0213 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03455 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0801 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04378333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04825 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08015 | 0.8 | ||
| LVL-wideRangeNoCom | 0.024033333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.02801666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04896666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.025683333333333332 | 0.2 | ||
| LVL-wideRangeNoCom | 0.05183333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.023 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07529999999999999 | 1.0 | ||
| LVL-wideRangeNoCom | 0.051866666666666665 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0596 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0283 | 0.0 | ||
| LVL-wideRangeNoCom | 0.08098333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07865000000000001 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03666666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03233333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06991666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06648333333333332 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03655 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05703333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.028533333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06831666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.022433333333333336 | 0.3 | ||
| LVL-wideRangeNoCom | 0.03455 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07096666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04226666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.05343333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06845 | 0.1 | ||
| LVL-wideRangeNoCom | 0.028816666666666668 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03265 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07436666666666666 | 0.9 | ||
| LVL-wideRangeNoCom | 0.022600000000000002 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08013333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04708333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.019950000000000002 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06253333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07576666666666668 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07705000000000001 | 0.3 | ||
| LVL-wideRangeNoCom | 0.029916666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07831666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06421666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.031683333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06933333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06316666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0353 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04441666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.06815 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06963333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.028683333333333335 | 0.4 | ||
| LVL-wideRangeNoCom | 0.030166666666666668 | 0.2 | ||
| LVL-wideRangeNoCom | 0.040383333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0256 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04416666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.031266666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06828333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06488333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07656666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.02235 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06898333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05938333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.028366666666666665 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05578333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07606666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.08201666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07838333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.017016666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06031666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.062433333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.057633333333333335 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0741 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0383 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0344 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07289999999999999 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07783333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07145 | 0.8 | ||
| LVL-wideRangeNoCom | 0.040516666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06693333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.019 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05145 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07478333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.047466666666666664 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07738333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.08226666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.052649999999999995 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04773333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.023533333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04278333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.08223333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0494 | 0.6 | ||
| LVL-wideRangeNoCom | 0.063 | 0.1 | ||
| LVL-wideRangeNoCom | 0.057 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04625 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06526666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0442 | 0.2 | ||
| LVL-wideRangeNoCom | 0.025483333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.02461666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05223333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.028883333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0813 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07971666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05313333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07935 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07475000000000001 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04985 | 0.3 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.017516666666666666 | 0.1 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.04211666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07146666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03773333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.025683333333333332 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08116666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.037983333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.029449999999999997 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04476666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07970000000000001 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0788 | 0.8 | ||
| LVL-wideRangeNoCom | 0.050583333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06738333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.02751666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07603333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.060899999999999996 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0245 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06541666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.030733333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05901666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05983333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.055516666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.027916666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0288 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05998333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06281666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03228333333333334 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05591666666666666 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05508333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.02528333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.025316666666666664 | 0.9 | ||
| LVL-wideRangeNoCom | 0.033383333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.031933333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.017816666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06465 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06723333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.057433333333333336 | 0.0 | ||
| LVL-wideRangeNoCom | 0.040100000000000004 | 0.2 | ||
| LVL-wideRangeNoCom | 0.0651 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03613333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0808 | 0.2 | ||
| LVL-wideRangeNoCom | 0.049833333333333334 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07551666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0364 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07765 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05635 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07935 | 0.4 | ||
| LVL-wideRangeNoCom | 0.033 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07200000000000001 | 0.0 | ||
| LVL-wideRangeNoCom | 0.02215 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05313333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.025366666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06763333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.061483333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.07921666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.024716666666666668 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04563333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.017316666666666664 | 0.4 | ||
| LVL-wideRangeNoCom | 0.017916666666666668 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03838333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.040100000000000004 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05053333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0648 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04805 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06753333333333332 | 0.9 | ||
| LVL-wideRangeNoCom | 0.0228 | 0.2 | ||
| LVL-wideRangeNoCom | 0.033850000000000005 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04413333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07905000000000001 | 0.3 | ||
| LVL-wideRangeNoCom | 0.033133333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04816666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03473333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.02615 | 0.7 | ||
| LVL-wideRangeNoCom | 0.052950000000000004 | 0.0 | ||
| LVL-wideRangeNoCom | 0.045766666666666664 | 1.0 | ||
| LVL-wideRangeNoCom | 0.044000000000000004 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06316666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.03873333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05798333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05505 | 0.9 | ||
| LVL-wideRangeNoCom | 0.023783333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05463333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.021083333333333332 | 0.4 | ||
| LVL-wideRangeNoCom | 0.023983333333333336 | 0.2 | ||
| LVL-wideRangeNoCom | 0.01975 | 0.2 | ||
| LVL-wideRangeNoCom | 0.03688333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.020849999999999997 | 0.2 | ||
| LVL-wideRangeNoCom | 0.022283333333333332 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07293333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04806666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.05943333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.018366666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05803333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.028550000000000002 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07586666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06626666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04505 | 0.4 | ||
| LVL-wideRangeNoCom | 0.08258333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.03205 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0446 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0457 | 1.0 | ||
| LVL-wideRangeNoCom | 0.01778333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0482 | 0.6 | ||
| LVL-wideRangeNoCom | 0.042666666666666665 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07785 | 0.4 | ||
| LVL-wideRangeNoCom | 0.055716666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.042499999999999996 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07611666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.048183333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0435 | 0.4 | ||
| LVL-wideRangeNoCom | 0.04888333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07401666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05043333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.023216666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.038483333333333335 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06213333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.049466666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.044000000000000004 | 0.9 | ||
| LVL-wideRangeNoCom | 0.02815 | 0.5 | ||
| LVL-wideRangeNoCom | 0.05363333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07893333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04198333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.060866666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.025983333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04106666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.043616666666666665 | 0.3 | ||
| LVL-wideRangeNoCom | 0.041183333333333336 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06760000000000001 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05093333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07218333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0593 | 0.3 | ||
| LVL-wideRangeNoCom | 0.020666666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.07980000000000001 | 0.6 | ||
| LVL-wideRangeNoCom | 0.031033333333333336 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06463333333333333 | 0.6 | ||
| LVL-wideRangeNoCom | 0.01846666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07516666666666666 | 0.4 | ||
| LVL-wideRangeNoCom | 0.08171666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0799 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0462 | 0.5 | ||
| LVL-wideRangeNoCom | 0.028883333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05733333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07360000000000001 | 1.0 | ||
| LVL-wideRangeNoCom | 0.02225 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0616 | 0.1 | ||
| LVL-wideRangeNoCom | 0.019283333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.0554 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07693333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07665000000000001 | 0.1 | ||
| LVL-wideRangeNoCom | 0.037649999999999996 | 0.2 | ||
| LVL-wideRangeNoCom | 0.02293333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05463333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08048333333333332 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07406666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.03606666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06686666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.083 | 0.6 | ||
| LVL-wideRangeNoCom | 0.02696666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06245 | 0.3 | ||
| LVL-wideRangeNoCom | 0.07241666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07454999999999999 | 0.3 | ||
| LVL-wideRangeNoCom | 0.02383333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.06556666666666668 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06733333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04256666666666666 | 1.0 | ||
| LVL-wideRangeNoCom | 0.018899999999999997 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08228333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.08301666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04203333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.035666666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0661 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04915 | 0.0 | ||
| LVL-wideRangeNoCom | 0.0354 | 0.7 | ||
| LVL-wideRangeNoCom | 0.061316666666666665 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0722 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07208333333333333 | 0.8 | ||
| LVL-wideRangeNoCom | 0.06513333333333333 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06473333333333334 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03426666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.040799999999999996 | 0.0 | ||
| LVL-wideRangeNoCom | 0.060250000000000005 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07203333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05283333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.035166666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0352 | 0.0 | ||
| LVL-wideRangeNoCom | 0.024783333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.056666666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05338333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07158333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.05411666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.06749999999999999 | 0.1 | ||
| LVL-wideRangeNoCom | 0.021616666666666666 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05035 | 0.3 | ||
| LVL-wideRangeNoCom | 0.026633333333333335 | 0.6 | ||
| LVL-wideRangeNoCom | 0.07303333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.061516666666666664 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06191666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.07703333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.04455 | 0.3 | ||
| LVL-wideRangeNoCom | 0.0528 | 0.2 | ||
| LVL-wideRangeNoCom | 0.08291666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06570000000000001 | 0.2 | ||
| LVL-wideRangeNoCom | 0.08224999999999999 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0168 | 0.7 | ||
| LVL-wideRangeNoCom | 0.08121666666666667 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07651666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07836666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06186666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0791 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07446666666666667 | 0.6 | ||
| LVL-wideRangeNoCom | 0.053233333333333334 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04563333333333333 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06548333333333332 | 0.5 | ||
| LVL-wideRangeNoCom | 0.04015 | 0.4 | ||
| LVL-wideRangeNoCom | 0.031183333333333334 | 0.5 | ||
| LVL-wideRangeNoCom | 0.053516666666666664 | 0.7 | ||
| LVL-wideRangeNoCom | 0.08301666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.045116666666666666 | 0.8 | ||
| LVL-wideRangeNoCom | 0.07948333333333334 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05258333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05436666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.036566666666666664 | 0.9 | ||
| LVL-wideRangeNoCom | 0.023983333333333336 | 0.4 | ||
| LVL-wideRangeNoCom | 0.06048333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07608333333333334 | 1.0 | ||
| LVL-wideRangeNoCom | 0.0207 | 0.6 | ||
| LVL-wideRangeNoCom | 0.054950000000000006 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05668333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.023899999999999998 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03481666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.032516666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07698333333333333 | 0.9 | ||
| LVL-wideRangeNoCom | 0.01965 | 0.9 | ||
| LVL-wideRangeNoCom | 0.053849999999999995 | 0.7 | ||
| LVL-wideRangeNoCom | 0.04028333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03726666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.07953333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04795 | 0.7 | ||
| LVL-wideRangeNoCom | 0.024 | 0.4 | ||
| LVL-wideRangeNoCom | 0.0534 | 0.4 | ||
| LVL-wideRangeNoCom | 0.02415 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06753333333333332 | 0.7 | ||
| LVL-wideRangeNoCom | 0.03245 | 0.6 | ||
| LVL-wideRangeNoCom | 0.05306666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03181666666666667 | 0.5 | ||
| LVL-wideRangeNoCom | 0.061516666666666664 | 0.8 | ||
| LVL-wideRangeNoCom | 0.04286666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.033166666666666664 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03515 | 0.4 | ||
| LVL-wideRangeNoCom | 0.031116666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.023383333333333332 | 0.5 | ||
| LVL-wideRangeNoCom | 0.030333333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.060733333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04591666666666667 | 0.1 | ||
| LVL-wideRangeNoCom | 0.04691666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.024650000000000002 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05586666666666666 | 0.0 | ||
| LVL-wideRangeNoCom | 0.04168333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.06576666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.02715 | 0.0 | ||
| LVL-wideRangeNoCom | 0.05391666666666666 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05346666666666667 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0535 | 0.0 | ||
| LVL-wideRangeNoCom | 0.028766666666666666 | 0.5 | ||
| LVL-wideRangeNoCom | 0.022433333333333336 | 0.8 | ||
| LVL-wideRangeNoCom | 0.02255 | 1.0 | ||
| LVL-wideRangeNoCom | 0.04733333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.03991666666666667 | 0.3 | ||
| LVL-wideRangeNoCom | 0.04688333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.04486666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.08063333333333333 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07401666666666666 | 0.2 | ||
| LVL-wideRangeNoCom | 0.07273333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.06715 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08034999999999999 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06841666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.0461 | 0.1 | ||
| LVL-wideRangeNoCom | 0.05785 | 0.5 | 0.4444444444444444 | |
| LVL-wideRangeNoCom | 0.017816666666666665 | 0.5 | ||
| LVL-wideRangeNoCom | 0.024983333333333337 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07273333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0549 | 0.5 | ||
| LVL-wideRangeNoCom | 0.048666666666666664 | 0.8 | ||
| LVL-wideRangeNoCom | 0.03581666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.05318333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.029516666666666667 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06171666666666666 | 0.7 | ||
| LVL-wideRangeNoCom | 0.026916666666666665 | 0.0 | 0.40 | |
| LVL-wideRangeNoCom | 0.06476666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.01891666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.053766666666666664 | 0.6 | ||
| LVL-wideRangeNoCom | 0.0455 | 1.0 | ||
| LVL-wideRangeNoCom | 0.01905 | 0.2 | ||
| LVL-wideRangeNoCom | 0.06953333333333332 | 0.8 | ||
| LVL-wideRangeNoCom | 0.023466666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.025949999999999997 | 1.0 | ||
| LVL-wideRangeNoCom | 0.06868333333333335 | 0.6 | ||
| LVL-wideRangeNoCom | 0.018183333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05885 | 0.9 | ||
| LVL-wideRangeNoCom | 0.02385 | 0.6 | ||
| LVL-wideRangeNoCom | 0.018416666666666668 | 0.7 | ||
| LVL-wideRangeNoCom | 0.05708333333333333 | 0.7 | ||
| LVL-wideRangeNoCom | 0.0351 | 0.4 | ||
| LVL-wideRangeNoCom | 0.07616666666666667 | 0.4 | ||
| LVL-wideRangeNoCom | 0.025449999999999997 | 0.4 | ||
| LVL-wideRangeNoCom | 0.05993333333333333 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05823333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.05703333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.021733333333333334 | 0.1 | ||
| LVL-wideRangeNoCom | 0.06866666666666667 | 1.0 | ||
| LVL-wideRangeNoCom | 0.07523333333333333 | 0.5 | ||
| LVL-wideRangeNoCom | 0.0467 | 0.6 | ||
| LVL-wideRangeNoCom | 0.04268333333333333 | 1.0 | ||
| LVL-wideRangeNoCom | 0.062033333333333336 | 0.3 | ||
| LVL-wideRangeNoCom | 0.06763333333333334 | 0.0 | ||
| LVL-wideRangeNoCom | 0.026883333333333332 | 0.1 | ||
| LVL-wideRangeNoCom | 0.08023333333333334 | 0.3 | ||
| LVL-wideRangeNoCom | 0.02655 | 1.0 | ||
| LVL-wideRangeNoCom | 0.03435 | 0.1 | ||
| LVL-wideRangeNoCom | 0.03775 | 0.4 | ||
| LVL-wideRangeNoCom | 0.052083333333333336 | 0.0 | ||
| LVL-wideRangeNoCom | 0.07905000000000001 | 0.4 | ||
| LVL-wideRangeNoCom | 0.03978333333333333 | 0.0 | ||
| LVL-wideRangeNoCom | 0.024283333333333334 | 0.9 | ||
| LVL-wideRangeNoCom | 0.03401666666666667 | 0.8 | ||
| LVL-wideRangeNoCom | 0.08321666666666667 | 0.9 | ||
| LVL-wideRangeNoCom | 0.061200000000000004 | 1.0 | 0.4111 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment